Add files using upload-large-folder tool
Browse files- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/_ctgan_generate.py +18 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/ctgan-c2-1382-20260501_070414.csv +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/ctgan_metadata.json +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/gen_20260501_070414.log +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/input_snapshot.json +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/models_300epochs/ctgan_300epochs.pt +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/models_300epochs/train_20260501_070350.log +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/runtime_result.json +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/staged/ctgan/adapter_report.json +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/staged/ctgan/adapter_transforms_applied.json +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/staged/ctgan/model_input_manifest.json +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/staged/public/staged_features.json +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/staged/public/test.csv +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/staged/public/train.csv +3 -0
- syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/staged/public/val.csv +3 -0
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/_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/c2/ctgan/ctgan-c2-20260501_070350/models_300epochs/ctgan_300epochs.pt")
|
| 8 |
+
total = 1382
|
| 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/c2/ctgan/ctgan-c2-20260501_070350/ctgan-c2-1382-20260501_070414.csv", index=False)
|
| 18 |
+
print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/ctgan-c2-1382-20260501_070414.csv")
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/ctgan-c2-1382-20260501_070414.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1f7b02a4ec291764c1cbd976b049a30764002ba3171dd16092ef3fcb5ef7656
|
| 3 |
+
size 42112
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/ctgan_metadata.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3281d50afec388c98ae73df59e56f82e3d46f7f968df0f491e9451aed70de6e
|
| 3 |
+
size 476
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/gen_20260501_070414.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26522d005d72be4f52afcf1da0ff670e0f431e6674695829c3ba52a8a20a9ed8
|
| 3 |
+
size 560
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d157d5ec30e36d517fe79a70c6572bf198de9e0967cbdc087e9e0e2ad276a6d
|
| 3 |
+
size 1341
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/models_300epochs/ctgan_300epochs.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f8a8cc35257101b33a517a602d7302dcb9095c4b077d2789f5fbd974f941b691
|
| 3 |
+
size 926947
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/models_300epochs/train_20260501_070350.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6f18d98ddfdd822b77a9c59e4da0d85f0850b223686d472cbf58fbc88007cc64
|
| 3 |
+
size 1836
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a63ea2091eccf0145444f670415e7201dbdd052bc2ddabdc4241f6f16bdcf0a0
|
| 3 |
+
size 3153
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bdc8c14ffce6055ca726f7949b2900c4ba619b670f8fc63c61328c24e4c46c66
|
| 3 |
+
size 912
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4940fd06167f685c4e129acc1ac09085427e26dc168f74fbc7bcb3ecdf61deb6
|
| 3 |
+
size 3939
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b91dea53df1007bbad70e0def83a03f266a8c0b177ca6a3ddbf21aca2c66eed
|
| 3 |
+
size 902
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/staged/ctgan/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a564153d5707242de5d822a06068136b67e865a858e3c0e519ae2734795c8540
|
| 3 |
+
size 315
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/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/c2/ctgan/ctgan-c2-20260501_070350/staged/ctgan/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b224c47a37c282fdd29e5748a4a31b415e3adda43beeb37549cd05a13ae5a55
|
| 3 |
+
size 4130
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:37511511f1d7cb0e004f9d7305c900644ebefe672c9a1a418c1f29b36786fabd
|
| 3 |
+
size 659
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73
|
| 3 |
+
size 5273
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd
|
| 3 |
+
size 41565
|
syntheticSuccess/c2/ctgan/ctgan-c2-20260501_070350/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01
|
| 3 |
+
size 5176
|