Add files using upload-large-folder tool
Browse files- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/_ctgan_generate.py +18 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/ctgan-m6-9864-20260429_032657.csv +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/ctgan_metadata.json +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/gen_20260429_032657.log +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/input_snapshot.json +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/models_300epochs/ctgan_300epochs.pt +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/models_300epochs/train_20260429_032145.log +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/runtime_result.json +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/staged/ctgan/adapter_report.json +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/staged/ctgan/adapter_transforms_applied.json +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/staged/ctgan/model_input_manifest.json +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/staged/public/staged_features.json +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/staged/public/test.csv +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/staged/public/train.csv +3 -0
- syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/staged/public/val.csv +3 -0
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/_ctgan_generate.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import sys
|
| 2 |
+
sys.path.insert(0, "/work")
|
| 3 |
+
from src.SpecificModels.ctgan_rdt_inverse_fix import apply_ctgan_inverse_fix
|
| 4 |
+
apply_ctgan_inverse_fix()
|
| 5 |
+
import pandas as pd
|
| 6 |
+
from ctgan.synthesizers.ctgan import CTGAN
|
| 7 |
+
model = CTGAN.load("/work/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/models_300epochs/ctgan_300epochs.pt")
|
| 8 |
+
total = 9864
|
| 9 |
+
chunk = min(50000, total) if total > 50000 else total
|
| 10 |
+
parts = []
|
| 11 |
+
left = total
|
| 12 |
+
while left > 0:
|
| 13 |
+
take = min(chunk, left)
|
| 14 |
+
parts.append(model.sample(take))
|
| 15 |
+
left -= take
|
| 16 |
+
sampled = pd.concat(parts, ignore_index=True) if len(parts) > 1 else parts[0]
|
| 17 |
+
sampled.to_csv("/work/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/ctgan-m6-9864-20260429_032657.csv", index=False)
|
| 18 |
+
print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/ctgan-m6-9864-20260429_032657.csv")
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/ctgan-m6-9864-20260429_032657.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:438cc75c1fd73ef405de318fd74e2e9996bed3e8b618759f064c8f2339c86ccf
|
| 3 |
+
size 1829798
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/ctgan_metadata.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69efb4af5739c13af5759fdaa03ac779463c639192af619d867b40847f5e5655
|
| 3 |
+
size 1288
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/gen_20260429_032657.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19d47b8669a9e287c4c692efd3927f6d70881c595e01df8aad995a20e4d4152d
|
| 3 |
+
size 561
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ee6e0a456b784ae8d3d98045b580636274422efb64d780db7b5b46b6eb33ede
|
| 3 |
+
size 1346
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/models_300epochs/ctgan_300epochs.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:241807a5f1a5e8e4b1c00fff112e27a888c7bc1752c5c78733b23b64fe95a6d4
|
| 3 |
+
size 1830563
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/models_300epochs/train_20260429_032145.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:493afcee1881a840880ee1f60c756fd92acc2e64c7413859ff3b145813976daa
|
| 3 |
+
size 3487
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a347e1961ed33117b9d30b34fc15249721c7bd0b25fb31ac7f974d158104bdd
|
| 3 |
+
size 8408
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eab3321ed4d9b51e430632d2aedeca5d0260df7acff58b7d732c556dd377db9d
|
| 3 |
+
size 918
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:389b0c6a208695ba08d57090080308758325c205536675d18b9fcc31cd6c7a5e
|
| 3 |
+
size 9194
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6c0194e50e4dbc34bc7173b65240760b8389529c56091330f21673f34641c4c
|
| 3 |
+
size 611
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/staged/ctgan/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7173690bd29e6672d5a08586f6cbb9adcb27dc73da28b697fd147c9f97d7296d
|
| 3 |
+
size 315
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/staged/ctgan/adapter_transforms_applied.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945
|
| 3 |
+
size 2
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/staged/ctgan/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab246ce103f37a18aadbd77e4cb9043cbcbe62b469d0f794e6d38eeea6c3652d
|
| 3 |
+
size 9385
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:23eac1d28d264cb53a977ae6229286741b38cdeec8b02eb2ee5f9a2949661e29
|
| 3 |
+
size 1780
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d16d0389cb0fe4b23bab344dc10070de6678357a9452f9f620d0eeba66a6b12d
|
| 3 |
+
size 116376
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1f0338c367408dc21d5a4ec9cdc5d3fe8188916db6085f3fd326304a55551e1
|
| 3 |
+
size 924849
|
syntheticSuccess/m6/ctgan/ctgan-m6-20260429_032145/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb9169f3c7213420491d9b709ee1cc650aeaed732fa77dcbd6ffe3583366b2d4
|
| 3 |
+
size 116198
|