Add files using upload-large-folder tool
Browse files- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/_ctgan_generate.py +18 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/ctgan-n3-3918-20260501_005206.csv +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/ctgan_metadata.json +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/gen_20260501_005206.log +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/input_snapshot.json +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/models_300epochs/ctgan_300epochs.pt +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/models_300epochs/train_20260501_005114.log +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/runtime_result.json +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/staged/ctgan/adapter_report.json +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/staged/ctgan/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/staged/ctgan/model_input_manifest.json +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/staged/public/staged_features.json +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/staged/public/test.csv +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/staged/public/train.csv +3 -0
- syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/staged/public/val.csv +3 -0
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/_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/n3/ctgan/ctgan-n3-20260501_005113/models_300epochs/ctgan_300epochs.pt")
|
| 8 |
+
total = 3918
|
| 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/n3/ctgan/ctgan-n3-20260501_005113/ctgan-n3-3918-20260501_005206.csv", index=False)
|
| 18 |
+
print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/ctgan-n3-3918-20260501_005206.csv")
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/ctgan-n3-3918-20260501_005206.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb7cca2ebbfceeae0f1a15299eca29196ab816349ca255cebba0e33c75dc726a
|
| 3 |
+
size 820521
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/ctgan_metadata.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ed0fccab4b7468f519203802e4215d32d4b6dde84f2294dabfe9040e3af45d41
|
| 3 |
+
size 851
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/gen_20260501_005206.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81caeeeaeaf6811441143067d2e107b9757a8617e8ceafc51558327c2de93ab9
|
| 3 |
+
size 560
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:143cdf608f07c4da9f7824fe4d7618933e381eb0a80f5fa5cb39430f0d54a7c9
|
| 3 |
+
size 1344
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/models_300epochs/ctgan_300epochs.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:176d796bfa05f713777ae623d6f80b56211527bf706632d1776b0d656f748200
|
| 3 |
+
size 1223587
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/models_300epochs/train_20260501_005114.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:470dccd1cffa96dcfb7b308419adeb2e29e2ee90f21ee7480c9e7a60623cd5b9
|
| 3 |
+
size 2586
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0d6ea2b78489a6f1d2a4546e12404214ae439c9439a9922bea713ec72b4b12a
|
| 3 |
+
size 5698
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0ef01a386dd32e531a00a2fe40df2aeed2cbeace8b0beab6956a3accd027a93
|
| 3 |
+
size 914
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:56ba757c9ae351c03c9f0c840d7131fc87dbfaeda6e4d6dca6f9e35bcfccabd4
|
| 3 |
+
size 6484
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:602f7d26089684133d5a90cfa6dffcac53f59f0550bc9fb2db5b070e8386e03e
|
| 3 |
+
size 902
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/staged/ctgan/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:018372873f0d40c70acf70e8d0306bcb69ecdb188d820939478a7540f2ed1831
|
| 3 |
+
size 315
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/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/n3/ctgan/ctgan-n3-20260501_005113/staged/ctgan/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b8ad1938f0ba091b79bbc1f2f53ecdcb23f4936e93c98cdf74dbc4bd4fbe6fb
|
| 3 |
+
size 6675
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:554e7aee4c0517bcf9d7810fc4a5563b6ed24d721bc267fee16aa28edd889143
|
| 3 |
+
size 1179
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b
|
| 3 |
+
size 28944
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9
|
| 3 |
+
size 229945
|
syntheticSuccess/n3/ctgan/ctgan-n3-20260501_005113/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6
|
| 3 |
+
size 28791
|