Skip to content

Commit e63a58d

Browse files
committed
cleaning 1
1 parent 614b419 commit e63a58d

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/run_benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Run SDGym Benchmark
33
on:
44
workflow_dispatch:
55
schedule:
6-
- cron: '0 5 2 * *'
6+
- cron: '0 5 5 * *'
77

88
jobs:
99
run-sdgym-benchmark:

sdgym/benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1297,7 +1297,7 @@ def _get_user_data_script(access_key, secret_key, region_name, script_content):
12971297
12981298
echo "======== Install Dependencies in venv ============"
12991299
pip install --upgrade pip
1300-
pip install "sdgym[all] @ git+https://github.com/sdv-dev/SDGym.git@issue-425-workflow-sdgym#egg=sdgym"
1300+
pip install sdgym[all]
13011301
pip install s3fs
13021302
13031303
echo "======== Write Script ==========="

sdgym/run_benchmark/utils.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
from sdgym.s3 import parse_s3_path
1010

11-
OUTPUT_DESTINATION_AWS = 's3://sdgym-benchmark/Debug/Issue_425/'
12-
UPLOAD_DESTINATION_AWS = 's3://sdgym-benchmark/Debug/Issue_425/'
11+
OUTPUT_DESTINATION_AWS = 's3://sdgym-benchmark/Benchmarks/'
12+
UPLOAD_DESTINATION_AWS = 's3://sdgym-benchmark/Benchmarks/'
1313
DEBUG_SLACK_CHANNEL = 'sdv-alerts-debug'
1414
SLACK_CHANNEL = 'sdv-alerts'
1515
KEY_DATE_FILE = '_BENCHMARK_DATES.json'
@@ -47,8 +47,7 @@
4747

4848
# The synthesizers inside the same list will be run by the same ec2 instance
4949
SYNTHESIZERS_SPLIT = [
50-
['UniformSynthesizer', 'ColumnSynthesizer', 'GaussianCopulaSynthesizer'],
51-
['TVAESynthesizer'],
50+
['UniformSynthesizer', 'ColumnSynthesizer', 'GaussianCopulaSynthesizer', 'TVAESynthesizer'],
5251
['CopulaGANSynthesizer'],
5352
['CTGANSynthesizer'],
5453
['RealTabFormerSynthesizer'],

0 commit comments

Comments
 (0)