Add files using upload-large-folder tool
Browse files- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/_ctgan_generate.py +18 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/ctgan-m4-2217-20260501_005357.csv +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/ctgan_metadata.json +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/gen_20260501_005357.log +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/input_snapshot.json +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/models_300epochs/ctgan_300epochs.pt +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/models_300epochs/train_20260501_005319.log +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/runtime_result.json +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/staged/ctgan/adapter_report.json +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/staged/ctgan/adapter_transforms_applied.json +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/staged/ctgan/model_input_manifest.json +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/staged/public/staged_features.json +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/staged/public/test.csv +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/staged/public/train.csv +3 -0
- syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/staged/public/val.csv +3 -0
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/_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/m4/ctgan/ctgan-m4-20260501_005319/models_300epochs/ctgan_300epochs.pt")
|
| 8 |
+
total = 2217
|
| 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/m4/ctgan/ctgan-m4-20260501_005319/ctgan-m4-2217-20260501_005357.csv", index=False)
|
| 18 |
+
print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/ctgan-m4-2217-20260501_005357.csv")
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/ctgan-m4-2217-20260501_005357.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c8c7341ffb00ab61712df4a680a498018c4b055e21115e17af39f9f573de3e8
|
| 3 |
+
size 135690
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/ctgan_metadata.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:453bde8642429b67f8a59bfbefca62573d46fb1571b05f9b3d4a44579562544e
|
| 3 |
+
size 466
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/gen_20260501_005357.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ec8a0834349502d3ac5a92adc918f52c147d215b61a063e2a73d81a537df15f
|
| 3 |
+
size 560
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87947c9169b792b11ed6fd3b4bdbeaa1daed2eb4edb6be086c52d26927fbb972
|
| 3 |
+
size 1343
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/models_300epochs/ctgan_300epochs.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a3a7bf168cae7aea5ffe1f2665ab950e673295c028d44f1a8a5dbf0bf894a08
|
| 3 |
+
size 938531
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/models_300epochs/train_20260501_005319.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:66f22b081707c0d5ff4c2ad6ae85dadb1e184f8787f65058d06222084fa5c73f
|
| 3 |
+
size 1836
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:147188e89a0542cf3b022c634e88c2d00f2d4ee70b9581034df8ccb87204eee8
|
| 3 |
+
size 3234
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:515294ac3f64bc7db5c9724dba42d4156b6a574241ce8cc363ba379c85326f47
|
| 3 |
+
size 910
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be19eda1d1ab9589550afe3dfefae698be8b698f2d72e521787b99461a70c9e9
|
| 3 |
+
size 4020
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:15d0ed6744e4999e9b7e2f3f4222dfd1b57f9d69edbe408ae622d6eff14fa815
|
| 3 |
+
size 902
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/staged/ctgan/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fdfd4b2c34e3341bc0ce6e893787fd86487aeccb3984004b21d0741f15629d6c
|
| 3 |
+
size 315
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/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/m4/ctgan/ctgan-m4-20260501_005319/staged/ctgan/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8246070a6a145ddfeb8270144d348d78d0d7d6f7f6cbc68277396a40a959eabb
|
| 3 |
+
size 4211
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1207bcd03560fd5e534c9b55e7ef32d0bf5bf1ccb7c37782749c850b76b062ef
|
| 3 |
+
size 644
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea
|
| 3 |
+
size 11298
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837
|
| 3 |
+
size 90069
|
syntheticSuccess/m4/ctgan/ctgan-m4-20260501_005319/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7
|
| 3 |
+
size 11218
|