Skip to content

Commit a90f15e

Browse files
committed
test 3
1 parent 901eb39 commit a90f15e

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/run_benchmark_multi_table.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run SDGym Benchmark
1+
name: Run SDGym Benchmark Multi-Table
22

33
on:
44
workflow_dispatch:
@@ -43,4 +43,4 @@ jobs:
4343
run: |
4444
export CREDENTIALS_FILEPATH=$(python -c "from sdgym._benchmark.credentials_utils import create_credentials_file; print(create_credentials_file())")
4545
invoke run-sdgym-benchmark --modality multi_table
46-
rm -f "$CREDENTIALS_FILEPATH"
46+
rm -f "$CREDENTIALS_FILEPATH"

sdgym/run_benchmark/run_benchmark.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ def main():
8585
output_destination='s3://sdgym-benchmark/Debug/GCP_Github/',
8686
credential_filepath=os.getenv('CREDENTIALS_FILEPATH'),
8787
synthesizers=synthesizer_group,
88-
compute_privacy_score=False,
8988
timeout=345600, # 4 days
9089
)
9190
append_benchmark_run(

sdgym/run_benchmark/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def post_slack_message(channel, text):
9797

9898
def post_benchmark_launch_message(date_str, compute_service='AWS'):
9999
"""Post a message to the SDV Alerts Slack channel when the benchmark is launched."""
100-
channel = SLACK_CHANNEL
100+
channel = DEBUG_SLACK_CHANNEL
101101
folder_name = get_result_folder_name(date_str)
102102
bucket, prefix = parse_s3_path(OUTPUT_DESTINATION_AWS)
103103
url_link = get_s3_console_link(bucket, f'{prefix}{folder_name}/')

0 commit comments

Comments
 (0)