TabQueryBench commited on
Commit
aa30958
·
verified ·
1 Parent(s): 4958bfc

Add remaining 5090 success run m5/tabdiff/tabdiff-m5-20260420_095611

Browse files
Files changed (31) hide show
  1. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/_tabdiff_gen.py +36 -0
  2. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/_tabdiff_train.py +21 -0
  3. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/input_snapshot.json +3 -0
  4. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/models_tabdiff/trained.pt +3 -0
  5. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/public_gate/normalized_schema_snapshot.json +3 -0
  6. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/public_gate/public_gate_report.json +3 -0
  7. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/public_gate/staged_input_manifest.json +3 -0
  8. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/runtime_result.json +3 -0
  9. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/staged/public/staged_features.json +3 -0
  10. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/staged/public/test.csv +3 -0
  11. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/staged/public/train.csv +3 -0
  12. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/staged/public/val.csv +3 -0
  13. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/staged/tabdiff/adapter_report.json +3 -0
  14. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/staged/tabdiff/adapter_transforms_applied.json +3 -0
  15. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/staged/tabdiff/model_input_manifest.json +3 -0
  16. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabdiff-m5-3539-20260420_100208.csv +3 -0
  17. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabdiff_train_meta.json +3 -0
  18. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/X_cat_test.npy +3 -0
  19. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/X_cat_train.npy +3 -0
  20. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/X_cat_val.npy +3 -0
  21. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/X_num_test.npy +3 -0
  22. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/X_num_train.npy +3 -0
  23. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/X_num_val.npy +3 -0
  24. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/info.json +3 -0
  25. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/real.csv +3 -0
  26. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/test.csv +3 -0
  27. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/val.csv +3 -0
  28. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/y_test.npy +3 -0
  29. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/y_train.npy +3 -0
  30. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/y_val.npy +3 -0
  31. 5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/train_20260420_095611.log +3 -0
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/_tabdiff_gen.py ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ td = r"/workspace/TabDiff"
4
+ name = r"pipeline_ds"
5
+ src = r"/work/output-SpecializedModels/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds"
6
+ dst_data = os.path.join(td, "data", name)
7
+ dst_syn = os.path.join(td, "synthetic", name)
8
+ shutil.rmtree(dst_data, ignore_errors=True)
9
+ shutil.copytree(src, dst_data)
10
+ os.makedirs(dst_syn, exist_ok=True)
11
+ for fn in ("real.csv", "test.csv", "val.csv"):
12
+ shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn))
13
+ os.chdir(td)
14
+ os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "")
15
+ subprocess.check_call([
16
+ sys.executable, "-m", "tabdiff.main",
17
+ "--dataname", name, "--mode", "test", "--gpu", "0",
18
+ "--no_wandb", "--exp_name", r"adapter_learnable",
19
+ "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_ds/adapter_learnable/model_500.pt",
20
+ "--num_samples_to_generate", str(int(3539)),
21
+ ])
22
+ # test() 写入 tabdiff/result/<dataname>/<exp>/<epoch>/samples.csv
23
+ import glob as g
24
+ base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable")
25
+ best = None
26
+ best_t = -1.0
27
+ for root, _, files in os.walk(base):
28
+ if "samples.csv" in files:
29
+ p = os.path.join(root, "samples.csv")
30
+ t = os.path.getmtime(p)
31
+ if t > best_t:
32
+ best_t = t
33
+ best = p
34
+ if not best:
35
+ raise SystemExit("tabdiff: no samples.csv under " + base)
36
+ shutil.copy(best, r"/work/output-SpecializedModels/m5/tabdiff/tabdiff-m5-20260420_095611/tabdiff-m5-3539-20260420_100208.csv")
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/_tabdiff_train.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ td = r"/workspace/TabDiff"
4
+ name = r"pipeline_ds"
5
+ src = r"/work/output-SpecializedModels/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds"
6
+ dst_data = os.path.join(td, "data", name)
7
+ dst_syn = os.path.join(td, "synthetic", name)
8
+ shutil.rmtree(dst_data, ignore_errors=True)
9
+ shutil.copytree(src, dst_data)
10
+ os.makedirs(dst_syn, exist_ok=True)
11
+ for fn in ("real.csv", "test.csv", "val.csv"):
12
+ shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn))
13
+ os.chdir(td)
14
+ os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "")
15
+ os.environ["TABDIFF_SMOKE_STEPS"] = "500"
16
+ os.environ["TABDIFF_ADAPTER_TRAIN"] = "1"
17
+ subprocess.check_call([
18
+ sys.executable, "-m", "tabdiff.main",
19
+ "--dataname", name, "--mode", "train", "--gpu", "0",
20
+ "--no_wandb", "--exp_name", r"adapter_learnable",
21
+ ])
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b5284df831c8565fa46a4a1664c744a27bdbf22b261ceb897e73f1bffa8dbf8
3
+ size 1348
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/models_tabdiff/trained.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb
3
+ size 74
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0842181000270f831fc5a634584366b305768795ef2b8fc37cfa7354cc8dd261
3
+ size 17113
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:801e82b3277060405c0fd96aa18ff7e560323da1c51e3eee5e41a755a2f053b0
3
+ size 913
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f88734ffde601aa32344f2a89b09a9f9730e22270a5731a72ec88471bcc6397
3
+ size 17894
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db8a9de0ee17926e67d3b788969248c1e055ce06bfcafa4512ee31a6285ef6ad
3
+ size 605
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4966adee2269582a83b612bffff9390170354c5d44e5c694204595ad1f3b05a
3
+ size 4027
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c
3
+ size 53943
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f
3
+ size 422717
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557
3
+ size 53889
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/staged/tabdiff/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99ea5fa306cb3f40431baf4fc1def1ba37c2cf699210ca5b2992ac8900cd3cc4
3
+ size 316
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/staged/tabdiff/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
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/staged/tabdiff/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97ff1cf2b9e6c99b728cbd27712fcd238fd95249cc9e87aa4709b323547675bc
3
+ size 18086
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabdiff-m5-3539-20260420_100208.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50bf96c57b3dc66497173dd245d68fbb66d10dd164e5f6b6d17222f69eed8ff9
3
+ size 586781
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabdiff_train_meta.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f847e0ef723d87c8f3448e352f47cc24c93249a7c601dcf2903fb003075437a8
3
+ size 82
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/X_cat_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a88290bb21923265cf0ef1b80f895a3e9c05948831b98640262e7fd001bdb598
3
+ size 28480
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/X_cat_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19a03fbf6df4a4eac29023c548b18d1662eebbb5b7eb090384d305990fa27da7
3
+ size 226624
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/X_cat_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54cbae7ec4e56f5750ce1b81643c999c48775290a9db5689d13ae90a9e81481a
3
+ size 28416
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/X_num_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59624133c968e19d1c08a83bb4e5e51891b9c7d7fc34d38da0bb4841ad2f0e18
3
+ size 49744
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/X_num_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5692fb1a4675971a5c761d985237b9a5846dd3fbd274cfe101f7f949505ee7d
3
+ size 396496
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/X_num_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4577adcac3be4dda98ef6f641efd402981f7a4aac7d3e9d13185db4a8ac60f8d
3
+ size 49632
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ccddb01e4d280b04f7e70358fb37011a3ffd52abfd185e40cb8f5b58e7cf08d
3
+ size 7456
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2654d04f887cc9661543c0efc4531b2602b7512e09171aae8160c5d3426ca241
3
+ size 422717
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b939affbd7b8e879f26f79f37d403598a57698eb8492d9dcaafcc0197e8c1b1
3
+ size 53943
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d73beaeb6ba214f5af66f03d2ffd126a9b445befe97cd3541ac8d332908783f0
3
+ size 53889
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f4c3f572a936504aac0f43c6acdc4dac4845324705b43e5ab0e71bf3d62579d
3
+ size 3672
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ab031f3326755e790d2443975f7f66ce7f45ca0de47ccdcf9f6d8bfd8a6b15f
3
+ size 28440
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/tabular_bundle/pipeline_ds/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d0c05e3f5eb696670968d1e70f6e895cff559c2c7cdc47e297f8ffc11e1bfc5
3
+ size 3664
5090-Success/m5/tabdiff/tabdiff-m5-20260420_095611/train_20260420_095611.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2e51b0c61e14a940a98043ece60522d32040bf3eab26e3c452ab6083960949e
3
+ size 293668