Add files using upload-large-folder tool
Browse files- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/_ctgan_generate.py +18 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/ctgan-c15-480000-20260501_124450.csv +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/ctgan_metadata.json +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/ctgan_train_continuous_imputed.csv +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/gen_20260501_124450.log +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/input_snapshot.json +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/models_300epochs/ctgan_300epochs.pt +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/models_300epochs/train_20260501_070442.log +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/runtime_result.json +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/staged/ctgan/adapter_report.json +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/staged/ctgan/adapter_transforms_applied.json +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/staged/ctgan/model_input_manifest.json +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/staged/public/staged_features.json +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/staged/public/test.csv +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/staged/public/train.csv +3 -0
- syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/staged/public/val.csv +3 -0
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/_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/c15/ctgan/ctgan-c15-20260501_070427/models_300epochs/ctgan_300epochs.pt")
|
| 8 |
+
total = 480000
|
| 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/c15/ctgan/ctgan-c15-20260501_070427/ctgan-c15-480000-20260501_124450.csv", index=False)
|
| 18 |
+
print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/c15/ctgan/ctgan-c15-20260501_070427/ctgan-c15-480000-20260501_124450.csv")
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/ctgan-c15-480000-20260501_124450.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79884cb44230594f3e914bb2b57dd0b9960f0b5762327cd036b2d7c8c9ada59c
|
| 3 |
+
size 112308570
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/ctgan_metadata.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd610e35b3b9ab1469d9890cb5ee11c7eacc5cf3ccda8f2374e53571cc824a76
|
| 3 |
+
size 1610
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/ctgan_train_continuous_imputed.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d0105ea7b210d966dc06610ba0ee046230aaf8760fbadd09348dc6ae264f371
|
| 3 |
+
size 68500071
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/gen_20260501_124450.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61511c86341ab99d04225d415307fcb9d59c7c0623e8da1ec10dfca43ea43d8a
|
| 3 |
+
size 569
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f09e3f43331a6a4ed30fdb30dee8fdca62623e70832d6c4b716248511f0f116a
|
| 3 |
+
size 1362
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/models_300epochs/ctgan_300epochs.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d52ea314afaeae20df69a8eb3b5c3ce6ec89fe2a8bde6bde80148b4a0281e5ac
|
| 3 |
+
size 236867107
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/models_300epochs/train_20260501_070442.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:930c0b55d9c9a579f0fb93ab8058b53b54229b65ee788d7e604d2449ecad7250
|
| 3 |
+
size 4539
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e18dc098fd61958a51c24594cd5bad03aad3e07a097380b3aa9d6351ee18824a
|
| 3 |
+
size 11438
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c491eb29211dbb52507826c49cabccf8fe3583c072f7f08822b86a2769181aad
|
| 3 |
+
size 920
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7aaa9ce0a6762fc989b27a651897431877d373c659949eba9d8cc5add80f6882
|
| 3 |
+
size 12234
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:850c10ab0521c0bd7ed8fe2973b5fa10edbef4f0eb9fffd713dee4bebdef4bf2
|
| 3 |
+
size 915
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/staged/ctgan/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab9281f1c4eddecd13dc685a38b857885b0c1c47675b186d1edf8139212b2dcd
|
| 3 |
+
size 317
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/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/c15/ctgan/ctgan-c15-20260501_070427/staged/ctgan/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d1f30f1da6d4ec2fb6cbb136e2c17cd83afb8ea922fcd7f285e2ba872cea885c
|
| 3 |
+
size 12427
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5d5884fb0f913ab783893461f45f8c28269069b45754d30e21de3ff7da579227
|
| 3 |
+
size 2300
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e68fec0fb16fb89b5e58bbb7949b744ebd11f8bf7b1d0c7aad908b17a2afb72
|
| 3 |
+
size 8530452
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e60fda0bb5a782d4e6917157f5a204d44e8e15de208c863574afc98855561477
|
| 3 |
+
size 68240502
|
syntheticSuccess/c15/ctgan/ctgan-c15-20260501_070427/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db13b576ba5284f2712b174f1b4445147bcb12fa295a4e38a1dc269d999d09fa
|
| 3 |
+
size 8528882
|