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

Add remaining 5090 success run m4/tabdiff/tabdiff-m4-20260420_094159

Browse files
Files changed (31) hide show
  1. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/_tabdiff_gen.py +36 -0
  2. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/_tabdiff_train.py +21 -0
  3. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/input_snapshot.json +3 -0
  4. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/models_tabdiff/trained.pt +3 -0
  5. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/public_gate/normalized_schema_snapshot.json +3 -0
  6. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/public_gate/public_gate_report.json +3 -0
  7. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/public_gate/staged_input_manifest.json +3 -0
  8. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/runtime_result.json +3 -0
  9. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/staged/public/staged_features.json +3 -0
  10. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/staged/public/test.csv +3 -0
  11. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/staged/public/train.csv +3 -0
  12. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/staged/public/val.csv +3 -0
  13. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/staged/tabdiff/adapter_report.json +3 -0
  14. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/staged/tabdiff/adapter_transforms_applied.json +3 -0
  15. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/staged/tabdiff/model_input_manifest.json +3 -0
  16. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabdiff-m4-2217-20260420_094745.csv +3 -0
  17. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabdiff_train_meta.json +3 -0
  18. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/X_cat_test.npy +3 -0
  19. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/X_cat_train.npy +3 -0
  20. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/X_cat_val.npy +3 -0
  21. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/X_num_test.npy +3 -0
  22. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/X_num_train.npy +3 -0
  23. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/X_num_val.npy +3 -0
  24. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/info.json +3 -0
  25. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/real.csv +3 -0
  26. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/test.csv +3 -0
  27. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/val.csv +3 -0
  28. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/y_test.npy +3 -0
  29. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/y_train.npy +3 -0
  30. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/y_val.npy +3 -0
  31. 5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/train_20260420_094159.log +3 -0
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/_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/m4/tabdiff/tabdiff-m4-20260420_094159/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(2217)),
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/m4/tabdiff/tabdiff-m4-20260420_094159/tabdiff-m4-2217-20260420_094745.csv")
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/_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/m4/tabdiff/tabdiff-m4-20260420_094159/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/m4/tabdiff/tabdiff-m4-20260420_094159/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66105a4fac0bdd7a80ba4587fcd9fbd1f41b7d4840909d496ad348830329806d
3
+ size 1345
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/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/m4/tabdiff/tabdiff-m4-20260420_094159/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:147188e89a0542cf3b022c634e88c2d00f2d4ee70b9581034df8ccb87204eee8
3
+ size 3234
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0702b19d99842cbfdf9f959fe1c2f900eb3015c64394b65c36c2b1d68433f524
3
+ size 910
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4bfa83183ffeaf5baade2c06a44872085fec17e4374cd7d58f27317f5e63d467
3
+ size 4015
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2fed5db41fe5ef4e8bd469ebcd7670fffff7034e2a2517753ba8c4d0031c7e4f
3
+ size 605
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1207bcd03560fd5e534c9b55e7ef32d0bf5bf1ccb7c37782749c850b76b062ef
3
+ size 644
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea
3
+ size 11298
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837
3
+ size 90069
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7
3
+ size 11218
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/staged/tabdiff/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41a2b425b97fa542934bdac1486fb283de7d2f19786fae11246065a56cc6a409
3
+ size 316
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/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/m4/tabdiff/tabdiff-m4-20260420_094159/staged/tabdiff/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2fb26ec09dac055a6ae1e29a278b1a0c62869fe6aeb4877b97c21a361e04f0a
3
+ size 4207
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabdiff-m4-2217-20260420_094745.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abe6d0f74e5213f848e6a43b80e37a09f7165f0b7cca715101a5470cc4eea121
3
+ size 83829
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/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/m4/tabdiff/tabdiff-m4-20260420_094159/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:26f92b4fe1b6f6a7e8b75f9e2ebf047f5298c7ce734c139f35638aeda1a5314a
3
+ size 6800
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/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:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07
3
+ size 53336
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/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:004e8bf92145bffddee12866c74455e4b884195a628930c3fe4dc9359243f773
3
+ size 6776
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/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:63e35960a09a43bfe5ceef4299f2f2901660f44e2972722af84f6e52c3e098bd
3
+ size 3464
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/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:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8
3
+ size 26732
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/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:8398984820c3096d718d443b9ed20ff78f89ce9be2b105c65909c3616341cee6
3
+ size 3452
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97a63941a2ab9a432ddb3f1237608d05bec0ffc7c5eb4d72c63fec7d2a3ca1d1
3
+ size 1456
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f3a6e5900c421558df255d227673da1f6154e4038dd39a9802b68ec1bcd51b9
3
+ size 60802
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5d4229a793997493886444d5d34ab519b97cd052c7a70a60d08681b74e6aa36
3
+ size 7644
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02fa322ffc62bafa53a080b22708ab64ddf27d90b683dbd15948343861a342f1
3
+ size 7579
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09f54c8885fb83499b365b415595ca846914866db83784efc95836573368d94f
3
+ size 1240
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2
3
+ size 8996
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/tabular_bundle/pipeline_ds/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6addf26dcc0b888bcb58f70db617a14fb821602eab65c3a7e66934c317b9c03b
3
+ size 1236
5090-Success/m4/tabdiff/tabdiff-m4-20260420_094159/train_20260420_094159.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8e90add7dd223eefedcb24cbdc038073376fc62df56e562c22c4d5372d001b5
3
+ size 290547