sdgym 0.8.0.dev0__tar.gz → 0.8.0.dev1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/PKG-INFO +1 -1
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/pyproject.toml +1 -1
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/__init__.py +1 -1
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/benchmark.py +6 -1
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym.egg-info/PKG-INFO +1 -1
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/LICENSE +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/README.md +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/cli/__init__.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/cli/__main__.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/cli/collect.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/cli/summary.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/cli/utils.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/datasets.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/errors.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/metrics.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/progress.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/s3.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/synthesizers/__init__.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/synthesizers/base.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/synthesizers/generate.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/synthesizers/identity.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/synthesizers/independent.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/synthesizers/sdv.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/synthesizers/uniform.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym/utils.py +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym.egg-info/SOURCES.txt +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym.egg-info/dependency_links.txt +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym.egg-info/entry_points.txt +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym.egg-info/requires.txt +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/sdgym.egg-info/top_level.txt +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/setup.cfg +0 -0
- {sdgym-0.8.0.dev0 → sdgym-0.8.0.dev1}/tests/test_tasks.py +0 -0
|
@@ -133,7 +133,7 @@ namespaces = false
|
|
|
133
133
|
version = {attr = 'sdgym.__version__'}
|
|
134
134
|
|
|
135
135
|
[tool.bumpversion]
|
|
136
|
-
current_version = "0.8.0.
|
|
136
|
+
current_version = "0.8.0.dev1"
|
|
137
137
|
parse = '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<candidate>\d+))?'
|
|
138
138
|
serialize = [
|
|
139
139
|
'{major}.{minor}.{patch}.{release}{candidate}',
|
|
@@ -551,7 +551,12 @@ def _create_sdgym_script(params, output_filepath):
|
|
|
551
551
|
# Generate the output script to run on the e2 instance
|
|
552
552
|
synthesizer_string = 'synthesizers=['
|
|
553
553
|
for synthesizer in params['synthesizers']:
|
|
554
|
-
|
|
554
|
+
if isinstance(synthesizer, str):
|
|
555
|
+
synthesizer_string += synthesizer + ', '
|
|
556
|
+
else:
|
|
557
|
+
synthesizer_string += synthesizer.__name__ + ', '
|
|
558
|
+
if params['synthesizers']:
|
|
559
|
+
synthesizer_string = synthesizer_string[:-2]
|
|
555
560
|
synthesizer_string += ']'
|
|
556
561
|
# The indentation of the string is important for the python script
|
|
557
562
|
script_content = f"""import boto3
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|