TabQueryBench commited on
Commit
d9e9ada
·
verified ·
1 Parent(s): 90cc9e7

Add remaining 5090 success run m9/tabdiff/tabdiff-m9-20260427_144854

Browse files
Files changed (31) hide show
  1. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/_tabdiff_gen.py +36 -0
  2. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/_tabdiff_train.py +21 -0
  3. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/input_snapshot.json +3 -0
  4. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/models_tabdiff/trained.pt +3 -0
  5. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/public_gate/normalized_schema_snapshot.json +3 -0
  6. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/public_gate/public_gate_report.json +3 -0
  7. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/public_gate/staged_input_manifest.json +3 -0
  8. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/runtime_result.json +3 -0
  9. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/staged/public/staged_features.json +3 -0
  10. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/staged/public/test.csv +3 -0
  11. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/staged/public/train.csv +3 -0
  12. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/staged/public/val.csv +3 -0
  13. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/staged/tabdiff/adapter_report.json +3 -0
  14. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/staged/tabdiff/adapter_transforms_applied.json +3 -0
  15. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/staged/tabdiff/model_input_manifest.json +3 -0
  16. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabdiff-m9-15326-20260427_150302.csv +3 -0
  17. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabdiff_train_meta.json +3 -0
  18. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/X_cat_test.npy +3 -0
  19. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/X_cat_train.npy +3 -0
  20. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/X_cat_val.npy +3 -0
  21. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/X_num_test.npy +3 -0
  22. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/X_num_train.npy +3 -0
  23. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/X_num_val.npy +3 -0
  24. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/info.json +3 -0
  25. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/real.csv +3 -0
  26. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/test.csv +3 -0
  27. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/val.csv +3 -0
  28. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/y_test.npy +3 -0
  29. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/y_train.npy +3 -0
  30. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/y_val.npy +3 -0
  31. 5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/train_20260427_144854.log +3 -0
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/_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/m9/tabdiff/tabdiff-m9-20260427_144854/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(15326)),
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/m9/tabdiff/tabdiff-m9-20260427_144854/tabdiff-m9-15326-20260428_051406.csv")
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/_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/m9/tabdiff/tabdiff-m9-20260427_144854/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/m9/tabdiff/tabdiff-m9-20260427_144854/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4071576b3f2cdca2ba2accd95b93d8923eb08d2ecc07ad97fa3de8f4c30c29b6
3
+ size 1349
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/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/m9/tabdiff/tabdiff-m9-20260427_144854/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:993d65c319b791da718f3be7cf7ae72d12cd43c241d0cda0d82a3b4506c4c984
3
+ size 6709
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4113f3e714e580fcb22219eb548a7de4d57f80ef6cb5ed2396f3e45baead7078
3
+ size 913
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c102b350bacb12c1cfbe81d028deb6ae47022880a457269aeb47c81633c2560a
3
+ size 7490
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad09301f2ab155f2db5684beeaf6ab0b0a56bb17a4a4b0f8932faf5ae3e3177a
3
+ size 844
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c737f5273d9543daa7adfeeadd1d30829575938fe476cf5bc4f780fd594a4fd
3
+ size 1407
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f61fd91d6b36fb78247e6a342fc5f089500396b09eda485421c74d5012138c07
3
+ size 193961
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8f6feb29a6c69afd23345fe03b2f3bb5d7f0f08bf8c8be86132e85ea54cfd65
3
+ size 1544257
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c73f6c76113338cf786877e911ac48e749a569a85ac2e266c7a6dea77ec9d28e
3
+ size 193818
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/staged/tabdiff/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bde0f05c3d70cd2de2bc3035faa5d2798fb11d1d42137e842e1672fcf41a92d9
3
+ size 316
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/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/m9/tabdiff/tabdiff-m9-20260427_144854/staged/tabdiff/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffabbdd443ff6a768a467d94613c9c880d412ef03a0663c14f531bb95e068acc
3
+ size 7682
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabdiff-m9-15326-20260427_150302.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c07575bf1e63effedca68d00cd86a2a7b532b4d1dbcb676f169e0238c79856cf
3
+ size 705427
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/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/m9/tabdiff/tabdiff-m9-20260427_144854/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:d5cd869eb1f519de23b55e825c8859aa52c32125ac6804aa5f86f48ee35aeb49
3
+ size 153488
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/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:963abae131dcfd45c82143a1813fc70ce2198b813af05e223e917e54446f1bfe
3
+ size 1226208
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/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:93669e1a5a7e9d99b3bf203bb3a22882a408e05158fb0d9455e2687a4d76659c
3
+ size 153328
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/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:df5658084c0fc002a2a8561e7edd8b9fde5ac38809d90c5cb2bc889be5aebfd8
3
+ size 23132
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/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:f7943c2adffab551acd527e1d55f012d3a59b1dcfe2bfb91963fe98eade5a49d
3
+ size 184040
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/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:3b2c46f35ab58c45d7d80a8bee01c876624f9abccfbc1ba57c714e64ecca9db5
3
+ size 23108
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c210f6509e3c8e4cb1b8235d0d232a7c4b604d577ba276aace22fad638f0e57d
3
+ size 2489
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72f7ac4de7df9a9535c23ef3100607ea7abccfe794bb031251a6f2cba2810dd4
3
+ size 620478
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3650ea30243258b7ea2e6c9aa3b765c03daf7cfcb41feb74be16917d20900ed
3
+ size 77583
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:018ece4e45397ad427773fa69f3e2ec93513f3638c5e3ab099cb476f64e2e307
3
+ size 77759
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30397e85a7fa4603ea7e939508128a175e2dc42bb43572ea9bc0d0d79314ccc6
3
+ size 15464
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc8bd737e275f3b3bdb41f9f4c775e33682aeb8b38f89dace80249eadf5064c3
3
+ size 122736
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/tabular_bundle/pipeline_ds/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b69643b7a8d797d40a8ea6e544f157a85a7aa1f372c481098775981ca94c5f2
3
+ size 15448
5090-Success/m9/tabdiff/tabdiff-m9-20260427_144854/train_20260427_144854.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72cc4ec94d4736b206ea8bc718204ce3ea30e6e567c9b4964e1f31c983cb8c47
3
+ size 753308