TabQueryBench commited on
Commit
03da667
·
verified ·
1 Parent(s): c552623

Add 5090 success run m1/tabdiff/tabdiff-m1-20260420_091055

Browse files
Files changed (31) hide show
  1. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/_tabdiff_gen.py +36 -0
  2. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/_tabdiff_train.py +21 -0
  3. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/input_snapshot.json +3 -0
  4. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/models_tabdiff/trained.pt +3 -0
  5. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/public_gate/normalized_schema_snapshot.json +3 -0
  6. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/public_gate/public_gate_report.json +3 -0
  7. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/public_gate/staged_input_manifest.json +3 -0
  8. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/runtime_result.json +3 -0
  9. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/staged/public/staged_features.json +3 -0
  10. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/staged/public/test.csv +3 -0
  11. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/staged/public/train.csv +3 -0
  12. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/staged/public/val.csv +3 -0
  13. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/staged/tabdiff/adapter_report.json +3 -0
  14. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/staged/tabdiff/adapter_transforms_applied.json +3 -0
  15. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/staged/tabdiff/model_input_manifest.json +3 -0
  16. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabdiff-m1-1200-20260420_092135.csv +3 -0
  17. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabdiff_train_meta.json +3 -0
  18. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/X_cat_test.npy +3 -0
  19. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/X_cat_train.npy +3 -0
  20. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/X_cat_val.npy +3 -0
  21. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/X_num_test.npy +3 -0
  22. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/X_num_train.npy +3 -0
  23. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/X_num_val.npy +3 -0
  24. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/info.json +3 -0
  25. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/real.csv +3 -0
  26. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/test.csv +3 -0
  27. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/val.csv +3 -0
  28. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/y_test.npy +3 -0
  29. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/y_train.npy +3 -0
  30. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/y_val.npy +3 -0
  31. 5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/train_20260420_091055.log +3 -0
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/_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/m1/tabdiff/tabdiff-m1-20260420_091055/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(1200)),
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/m1/tabdiff/tabdiff-m1-20260420_091055/tabdiff-m1-1200-20260420_092135.csv")
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/_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/m1/tabdiff/tabdiff-m1-20260420_091055/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/m1/tabdiff/tabdiff-m1-20260420_091055/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79bb2d6029544eb608c702faa48d727af93ea1be583717a65dff83302f759e49
3
+ size 1348
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/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/m1/tabdiff/tabdiff-m1-20260420_091055/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b119c9e506b7e460cf180a210fe501cc20982854a292d273d296cb2042c198cb
3
+ size 14290
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cbf36adfc35a02fc9b71b3574f2df82381dba68977c592f1936143fc1de43247
3
+ size 923
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7a09ce2bbdcb25b3bff16c5fcb8a6efa09c2197c364c51d4593ec2bed2cea51
3
+ size 15071
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4fd43987f7bc3f2403f2d021fb90ef1fbb9b45cc708d34f088c67d05cda3f47
3
+ size 605
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a4857dd67830beab0de00fe7692c2d76505df70139bb082fa996700b67aa349
3
+ size 3060
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b10fb23dd851cc8e9512cc2f6c6cf8a7d55a9e129e0ea3fcfdf74a1d9c4ae4e
3
+ size 31319
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e9c852dcaca7e39ee66137ba8b9d16cff5ac3db8773ada638088281140b801f
3
+ size 246535
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74e1ec553c236519ce940f48b25c8f9b87aca28e5746f70de8e292fcae7b3dfb
3
+ size 31323
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/staged/tabdiff/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6014e72e37258571d250b4e6df060f2af2640e41db63571f6734045e339b31b
3
+ size 316
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/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/m1/tabdiff/tabdiff-m1-20260420_091055/staged/tabdiff/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28d314076154e50ded7009239dfa5dc34b7664b7b162fbb80478a5d7269635a9
3
+ size 15263
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabdiff-m1-1200-20260420_092135.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e54140e89dee3a32095d26e5e8538b6226f53ac283587ccc3ac1ee7db8d1df13
3
+ size 163896
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/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/m1/tabdiff/tabdiff-m1-20260420_091055/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:c4e3eee9b1cb1ecde3871bd0f100629ee3aa86a583ab70298c1315946476966f
3
+ size 18128
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/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:647875401f8038d707440d4e3e48143c6f380d447c982436cdf78a2e03538b94
3
+ size 144128
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/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:76a3dd50137ff542b23f2f445130196ad63f31c85c3c73971220dff51d7096a7
3
+ size 18128
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/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:8e31d0278bfe6bad4209c87eb306e16086d5c2d110b05148469e63d32a866754
3
+ size 8528
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/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:94fc96e7a04cf92dedd43ff8259c690bb7735758a094b6a16bca650ed5d1fb5e
3
+ size 67328
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/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:97d9fd5d44bcafd1895808aa76729def569b58832ae43ccaa4170f6844f18340
3
+ size 8528
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5761a66f4726436db83e4941facd4778f13d401ea7e2415c4b817b2140a49a1
3
+ size 5300
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de0967d25e86a9c25b0e9bfbe46d97b49e9a52439f1b6fd661ec044f844d169f
3
+ size 107409
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29cba923e3d263ad13a654a29f2e311d14db674cafc9cfd4d37574f7792a8080
3
+ size 13827
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4f878937262c17e4bb76c7c0ffb760bee8bdfc29f1e0692395eb1ef2a3d0448
3
+ size 13837
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c520f4bb822a851e243a41c84e4e2196ca3c0281b59c14830f5fa6cea2433b2a
3
+ size 1328
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e8b8087fbf0d2dfb3314cbbf47157888ef98f413e2b5009a2643e22583a749c
3
+ size 9728
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/tabular_bundle/pipeline_ds/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a8e3f3b0bfded06ccc2bf5089bc9911288aa83d0bc5fb0c3af7f9f3dad84358
3
+ size 1328
5090-Success/m1/tabdiff/tabdiff-m1-20260420_091055/train_20260420_091055.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f43401f80eadc382f47db4422420af03f952eeab5244c28f6385a30c0022c833
3
+ size 298789