TabQueryBench commited on
Commit
db49421
·
verified ·
1 Parent(s): 476b6e1

Add remaining 5090 success run n5/tabdiff/tabdiff-n5-20260427_165109

Browse files
Files changed (31) hide show
  1. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/_tabdiff_gen.py +36 -0
  2. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/_tabdiff_train.py +21 -0
  3. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/input_snapshot.json +3 -0
  4. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/models_tabdiff/trained.pt +3 -0
  5. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/public_gate/normalized_schema_snapshot.json +3 -0
  6. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/public_gate/public_gate_report.json +3 -0
  7. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/public_gate/staged_input_manifest.json +3 -0
  8. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/runtime_result.json +3 -0
  9. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/staged/public/staged_features.json +3 -0
  10. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/staged/public/test.csv +3 -0
  11. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/staged/public/train.csv +3 -0
  12. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/staged/public/val.csv +3 -0
  13. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/staged/tabdiff/adapter_report.json +3 -0
  14. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/staged/tabdiff/adapter_transforms_applied.json +3 -0
  15. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/staged/tabdiff/model_input_manifest.json +3 -0
  16. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabdiff-n5-17010-20260427_165932.csv +3 -0
  17. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabdiff_train_meta.json +3 -0
  18. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/X_cat_test.npy +3 -0
  19. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/X_cat_train.npy +3 -0
  20. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/X_cat_val.npy +3 -0
  21. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/X_num_test.npy +3 -0
  22. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/X_num_train.npy +3 -0
  23. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/X_num_val.npy +3 -0
  24. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/info.json +3 -0
  25. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/real.csv +3 -0
  26. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/test.csv +3 -0
  27. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/val.csv +3 -0
  28. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/y_test.npy +3 -0
  29. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/y_train.npy +3 -0
  30. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/y_val.npy +3 -0
  31. 5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/train_20260427_165112.log +3 -0
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/_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/n5/tabdiff/tabdiff-n5-20260427_165109/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(17010)),
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/n5/tabdiff/tabdiff-n5-20260427_165109/tabdiff-n5-17010-20260428_051510.csv")
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/_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/n5/tabdiff/tabdiff-n5-20260427_165109/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/n5/tabdiff/tabdiff-n5-20260427_165109/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2aaea3a77b1150237df7c87c0b0af9f0f4dc8dc8220a769add334e1648e4cb5f
3
+ size 1354
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/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/n5/tabdiff/tabdiff-n5-20260427_165109/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1040c08505d7d12423246ff5edb775aa195afb74ff3a306f09e495c391bf3797
3
+ size 42956
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bba35a161dd75f710820d3bfe711fff6d2a6b1a86f34a55adcc8a63db00b3add
3
+ size 922
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:106c8028105408879ddbb35e85f2e8f57165ae87fed8edcc1729d0742883739d
3
+ size 43737
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5bbe61e6e6286e534511688aaf07b1ba1e61feb0d1a36b1973d019f5f3bfa2ec
3
+ size 844
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eed8a8509e7adba3169b6a451170f1d5c52adc97fe7669ef197ac560954c45bb
3
+ size 8650
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:16efa6819477c1d61f1a80a9e480021d1814a8076e1c0f3182769e7e31fc5142
3
+ size 2403226
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c15cea644970e0d6a9c73d949153a38425fa473a8d0b4e2e70cfcdc7d09ec440
3
+ size 19205735
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c0a9b6eb141b64fcd162a8de3c3c11047c60f0d92a250663ea03cfc688bce3a
3
+ size 2412771
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/staged/tabdiff/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6fe60784ba231f562b663d113d31e154245b12b7404591ff8fae51d462c268c
3
+ size 316
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/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/n5/tabdiff/tabdiff-n5-20260427_165109/staged/tabdiff/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f02aadb736c51f5766d66dfa0f6336c0065bdfc14749183056ede31d649c9a7
3
+ size 43929
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabdiff-n5-17010-20260427_165932.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:069c2974f13c22cc9c9e3250dd4432a51f5f72a2c8cc1a08f0d7a522acb357b2
3
+ size 12868957
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/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/n5/tabdiff/tabdiff-n5-20260427_165109/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:01715909e33970e4991f672876ef5c32ebe5f832d202d748681216985f7dd3d5
3
+ size 128
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/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:c217e9fa2eb58a5bf8256d8debac889f88bff8995f4ca2d68cb92de0983c3508
3
+ size 128
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/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:4328f449a9a7b4adac8a5e7b546e572fd1aa1fc4ebeaf2ab472909c833b6dcf5
3
+ size 128
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/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:a1b671852c8765833b907565a264c1a42bf13698dd89a3b25bcf475c9ef29221
3
+ size 689276
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/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:70742374c706536dd52d5f7ec8528d05e1be277472224d9ad495e6a8d4c07e7a
3
+ size 5511368
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/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:ee22ac52654dbcdd80ff7b441fc2678006dc0fb43a06092b3215b15798d0fc1c
3
+ size 688952
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e468394e985d7841b448d90932172e8d52299a0be95cc41593c2a0c898e47b1
3
+ size 16147
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f94069dd6e2bcc1031be722334e8e7e3c3cdee67aa78b498c2d3ca53808d7b1a
3
+ size 19205735
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd863c98841085d3f4fdf25dbccad7c0f7f98aadb75cd7e6e6a0194e8691229f
3
+ size 2403226
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d8dc78a49ff5e90119b85f4690f11a2bb67f83ed9f0d5b7d100a2c01e4ea8d0
3
+ size 2412771
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89330ca29893599dede20c18bf763b01e46583ff69b6e5ac57c3b72ebcfda44c
3
+ size 8636
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba6a3d466951752d1548e2ee4c8a47227974e225e3e909e3d098245eb0dc1b73
3
+ size 68168
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/tabular_bundle/pipeline_ds/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc27f5adb4d4173b4471a678f0db103db30d1fa86014ec4c22bf7af115698422
3
+ size 8632
5090-Success/n5/tabdiff/tabdiff-n5-20260427_165109/train_20260427_165112.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0430b914a705737b0498cffacf21642a04274eb220486f5ca85207d02dbec29
3
+ size 705842