Skip to content

Commit 584f3a7

Browse files
committed
run benchmark with timeout
1 parent e38dde4 commit 584f3a7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

sdgym/run_benchmark/run_benchmark.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,14 @@ def main():
4646
aws_access_key_id = os.getenv('AWS_ACCESS_KEY_ID')
4747
aws_secret_access_key = os.getenv('AWS_SECRET_ACCESS_KEY')
4848
date_str = datetime.now(timezone.utc).strftime('%Y-%m-%d')
49-
for synthesizer_group in SYNTHESIZERS_SPLIT[:2]:
49+
for synthesizer_group in SYNTHESIZERS_SPLIT:
5050
benchmark_single_table_aws(
5151
output_destination=OUTPUT_DESTINATION_AWS,
5252
aws_access_key_id=aws_access_key_id,
5353
aws_secret_access_key=aws_secret_access_key,
54-
sdv_datasets=['expedia_hotel_logs', 'fake_companies'],
5554
synthesizers=synthesizer_group,
5655
compute_privacy_score=False,
57-
timeout=1, # 4 days
56+
timeout=345600, # 4 days
5857
)
5958

6059
append_benchmark_run(aws_access_key_id, aws_secret_access_key, date_str)

0 commit comments

Comments
 (0)