TabQueryBench commited on
Commit
9ec20ff
·
verified ·
1 Parent(s): e3078a9

Add files using upload-large-folder tool

Browse files
Files changed (18) hide show
  1. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/_ctgan_generate.py +18 -0
  2. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/ctgan-m8-36168-20260501_012600.csv +3 -0
  3. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/ctgan_metadata.json +3 -0
  4. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/gen_20260501_012600.log +3 -0
  5. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/input_snapshot.json +3 -0
  6. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/models_300epochs/ctgan_300epochs.pt +3 -0
  7. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/models_300epochs/train_20260501_011446.log +3 -0
  8. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/public_gate/normalized_schema_snapshot.json +3 -0
  9. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/public_gate/public_gate_report.json +3 -0
  10. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/public_gate/staged_input_manifest.json +3 -0
  11. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/runtime_result.json +3 -0
  12. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/staged/ctgan/adapter_report.json +3 -0
  13. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/staged/ctgan/adapter_transforms_applied.json +3 -0
  14. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/staged/ctgan/model_input_manifest.json +3 -0
  15. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/staged/public/staged_features.json +3 -0
  16. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/staged/public/test.csv +3 -0
  17. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/staged/public/train.csv +3 -0
  18. syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/staged/public/val.csv +3 -0
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/_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/m8/ctgan/ctgan-m8-20260501_011445/models_300epochs/ctgan_300epochs.pt")
8
+ total = 36168
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/m8/ctgan/ctgan-m8-20260501_011445/ctgan-m8-36168-20260501_012600.csv", index=False)
18
+ print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/ctgan-m8-36168-20260501_012600.csv")
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/ctgan-m8-36168-20260501_012600.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:affed8d8e31123fc53bcb1c1aa6ae3f61e63242e1afe98a8e75e50205da8e05f
3
+ size 2931388
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/ctgan_metadata.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd25d1c31d79fa671da965a1be92003e31926135fdf3112b244051e6870cc2de
3
+ size 1117
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/gen_20260501_012600.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ccb815d03d2b0ebe16d9efdbeb6e8eab509ea50d98d25d98556b037cd198ba59
3
+ size 562
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed707cd20a123112ad828b835fcc824f69e0a044ebf713167bb87d5c2b0696e1
3
+ size 1347
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/models_300epochs/ctgan_300epochs.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b9e4e9a0f8e3c300c849a62387a02e3b2406c8ec6f63b4f19997a1ea06eb840
3
+ size 4538659
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/models_300epochs/train_20260501_011446.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65471f9153a0b6311f61f8d0eb68032d8ee4d40e666619469f31d8bf679be71c
3
+ size 3337
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d733310afeedb79582ccecc72b050f6a9a712817177584d3824924c50e502e38
3
+ size 7627
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d069ba59e0bad764d31cf1059ffe64fcc37d324eba6441fdff3756c384a2efd7
3
+ size 908
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2876eb7501794a01805c025caf623c2b2fe8044bed0497105e5e061a06dc7614
3
+ size 8413
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e722c4925c6efad75c8864e3ec15f5d3522a1ff0fc23521dec77edc06bcfdc2c
3
+ size 904
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/staged/ctgan/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:015a5dd52ae1ba4ecdf9c69c6d702a82dc6f06560541217610f9e9f22785da50
3
+ size 315
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/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/m8/ctgan/ctgan-m8-20260501_011445/staged/ctgan/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15720922d4daf9dad51e821d4307c32673b5a810acc869a104180f8a092038c8
3
+ size 8604
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0cf7f5cbab67fd23b227d3d6dd45fee61797fb10d962495c5e6e65ae5dbcb5f0
3
+ size 1570
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310
3
+ size 370991
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833
3
+ size 2964802
syntheticSuccess/m8/ctgan/ctgan-m8-20260501_011445/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525
3
+ size 370535