Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions EVALUATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,7 @@ For example, the following command will run the SDV benchmark on all the given d
using `dask` and a timeout of 60 seconds:

```python
scores = run_benchmark(
datasets=['DCG_v1', 'trains_v1', 'UTube_v1'],
distributed=True,
timeout=60
)
scores = run_benchmark(datasets=['DCG_v1', 'trains_v1', 'UTube_v1'], distributed=True, timeout=60)
```

And the result will be a DataFrame containing a table with the columns `dataset`, `score`:
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release Notes

## v1.34.3 - 2026-03-06

### New Features

* Metadata should be able to auto-detect cases where a primary key is also a foreign key (`column_name_match` algorithm) - Issue [#2788](https://github.com/sdv-dev/SDV/issues/2788) by @gsheni

## v1.34.2 - 2026-02-27

### New Features
Expand Down
13 changes: 4 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,7 @@ fictional hotel.
```python
from sdv.datasets.demo import download_demo

real_data, metadata = download_demo(
modality='single_table',
dataset_name='fake_hotel_guests')
real_data, metadata = download_demo(modality='single_table', dataset_name='fake_hotel_guests')
```

![Single Table Metadata Example](https://github.com/sdv-dev/SDV/blob/stable/docs/images/Single-Table-Metadata-Example.png)
Expand Down Expand Up @@ -123,10 +121,7 @@ started by generating a quality report.
```python
from sdv.evaluation.single_table import evaluate_quality

quality_report = evaluate_quality(
real_data,
synthetic_data,
metadata)
quality_report = evaluate_quality(real_data, synthetic_data, metadata)
```

```
Expand All @@ -151,9 +146,9 @@ fig = get_column_plot(
real_data=real_data,
synthetic_data=synthetic_data,
column_name='amenities_fee',
metadata=metadata
metadata=metadata,
)

fig.show()
```

Expand Down
4 changes: 2 additions & 2 deletions static_code_analysis.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Run started:2026-02-27 16:23:11.459871+00:00
Run started:2026-03-06 17:21:03.891292+00:00

Test results:
>> Issue: [B110:try_except_pass] Try, Except, Pass detected.
Expand Down Expand Up @@ -121,7 +121,7 @@ Test results:
--------------------------------------------------

Code scanned:
Total lines of code: 17543
Total lines of code: 17545
Total lines skipped (#nosec): 0
Total potential issues skipped due to specifically being disabled (e.g., #nosec BXXX): 0

Expand Down