We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ba7651 commit 8953371Copy full SHA for 8953371
sdgym/benchmark.py
@@ -1249,6 +1249,7 @@ def _get_s3_script_content(
1249
import base64
1250
import pandas as pd
1251
import sdgym
1252
+import logging
1253
from sdgym.synthesizers.sdv import (
1254
CopulaGANSynthesizer, CTGANSynthesizer,
1255
GaussianCopulaSynthesizer, HMASynthesizer, PARSynthesizer,
@@ -1258,6 +1259,8 @@ def _get_s3_script_content(
1258
1259
from sdgym.benchmark import _run_jobs, _write_run_id_file, _update_run_id_file
1260
from io import StringIO
1261
from sdgym.result_writer import S3ResultsWriter
1262
+LOGGER = logging.getLogger(__name__)
1263
+LOGGER.setLevel(logging.INFO)
1264
1265
s3_client = boto3.client(
1266
's3',
0 commit comments