TabQueryBench commited on
Commit
fcb5388
·
verified ·
1 Parent(s): b4bf8a8

Add remaining 5090 success run n6/tabdiff/tabdiff-n6-20260420_002739

Browse files
Files changed (31) hide show
  1. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/_tabdiff_gen.py +36 -0
  2. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/_tabdiff_train.py +21 -0
  3. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/input_snapshot.json +3 -0
  4. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/models_tabdiff/trained.pt +3 -0
  5. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/public_gate/normalized_schema_snapshot.json +3 -0
  6. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/public_gate/public_gate_report.json +3 -0
  7. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/public_gate/staged_input_manifest.json +3 -0
  8. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/runtime_result.json +3 -0
  9. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/staged/public/staged_features.json +3 -0
  10. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/staged/public/test.csv +3 -0
  11. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/staged/public/train.csv +3 -0
  12. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/staged/public/val.csv +3 -0
  13. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/staged/tabdiff/adapter_report.json +3 -0
  14. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/staged/tabdiff/adapter_transforms_applied.json +3 -0
  15. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/staged/tabdiff/model_input_manifest.json +3 -0
  16. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabdiff-n6-6400-20260420_051801.csv +3 -0
  17. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabdiff_train_meta.json +3 -0
  18. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/X_cat_test.npy +3 -0
  19. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/X_cat_train.npy +3 -0
  20. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/X_cat_val.npy +3 -0
  21. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/X_num_test.npy +3 -0
  22. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/X_num_train.npy +3 -0
  23. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/X_num_val.npy +3 -0
  24. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/info.json +3 -0
  25. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/real.csv +3 -0
  26. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/test.csv +3 -0
  27. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/val.csv +3 -0
  28. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/y_test.npy +3 -0
  29. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/y_train.npy +3 -0
  30. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/y_val.npy +3 -0
  31. 5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/train_20260420_002739.log +3 -0
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/_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/n6/tabdiff/tabdiff-n6-20260420_002739/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(6400)),
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/n6/tabdiff/tabdiff-n6-20260420_002739/tabdiff-n6-6400-20260420_051801.csv")
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/_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/n6/tabdiff/tabdiff-n6-20260420_002739/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/n6/tabdiff/tabdiff-n6-20260420_002739/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a7ce80bc99bdababcf0ce4413c35e080330373250cbc94aa2c3f022419c1723
3
+ size 1346
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/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/n6/tabdiff/tabdiff-n6-20260420_002739/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b240ee2cf62a2868bf54e3b4393eadd3d7751825bf4bb34743e85547f7cbcd3
3
+ size 7725
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c34e3ea923f7c8932850719a37b5f5774c68fc80501b8fe2312f2a1e30ed09e6
3
+ size 908
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0151dae143c3dcc3158ba4c0d10d479205872f29ac642f0c3678345eb5d99f1
3
+ size 8506
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28d7295e44cd9cbecc6b3d62182250fcfb9ad51f3e55e65fabab5e3df8c330ec
3
+ size 451
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e2869694dd92d59628a62fdd1349d4dd69eb6608ed9b0fdeb4b0800b6334d81
3
+ size 1520
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5
3
+ size 39918
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b
3
+ size 316902
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f
3
+ size 39705
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/staged/tabdiff/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bac182b2a7211453f6ee22ccfb2b6f208ee9aa898a2e871ca5733bae86bc864f
3
+ size 316
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/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/n6/tabdiff/tabdiff-n6-20260420_002739/staged/tabdiff/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a539408069bd5bb30c036787599524cd650701bf2f513dd399d2021c2503ead0
3
+ size 8698
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabdiff-n6-6400-20260420_051801.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:875c20859830087fe892e552d6cb55aeae005201577b5dd4b41c5b2e3a702508
3
+ size 72327
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/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/n6/tabdiff/tabdiff-n6-20260420_002739/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:4951e852885baf08e84297cae58e4c48b42258e284b3ad9e6b7d9b5d0f8332f5
3
+ size 128
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/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:1f36bc04fd4784bdd71cdf76db3bc10e00251759c48d501d1d7b5437ff785c82
3
+ size 128
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/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:4951e852885baf08e84297cae58e4c48b42258e284b3ad9e6b7d9b5d0f8332f5
3
+ size 128
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/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:9eab90bae74e43019484aad1c20a49a193c24617a02d280145f244b438b25672
3
+ size 51328
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/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:393035466f24178ccee0946bd1ab6d8b7bc07677142b5798ad07b8d2e2b65962
3
+ size 409728
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/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:4661fb6b5ee9a958ed78a0ee07482da68b9c75aa53b5b0308f10bff861c33405
3
+ size 51328
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ecd473f3ee40332c70f84cdca0228b0b9fdb0b07c7a01dbcbe8c570e2ebb18b
3
+ size 3094
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b
3
+ size 316902
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5
3
+ size 39918
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f
3
+ size 39705
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:033db5328408416ad69417a0308d68cb40650982599f6f2e8028dda49a123c86
3
+ size 6528
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6bc1d3e281e647d8507df1305552f87513b9d8b7aad284e535e9fa2d0c18071b
3
+ size 51328
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/tabular_bundle/pipeline_ds/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37008cd909bf480e62c53c242969398b8ccfe51a107c41ab26025395bdada3fd
3
+ size 6528
5090-Success/n6/tabdiff/tabdiff-n6-20260420_002739/train_20260420_002739.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e5227683888f18c9e9453d7eec77baea9f29fda9f991544d17ec3ec58df8084
3
+ size 374069