TabQueryBench commited on
Commit
1442906
·
verified ·
1 Parent(s): df78413

Add files using upload-large-folder tool

Browse files
Files changed (32) hide show
  1. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/_tabdiff_gen.py +36 -0
  2. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/_tabdiff_train.py +21 -0
  3. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/gen_20260501_171949.log +3 -0
  4. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/input_snapshot.json +3 -0
  5. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/models_tabdiff/trained.pt +3 -0
  6. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/public_gate/normalized_schema_snapshot.json +3 -0
  7. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/public_gate/public_gate_report.json +3 -0
  8. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/public_gate/staged_input_manifest.json +3 -0
  9. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/runtime_result.json +3 -0
  10. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/staged/public/staged_features.json +3 -0
  11. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/staged/public/test.csv +3 -0
  12. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/staged/public/train.csv +3 -0
  13. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/staged/public/val.csv +3 -0
  14. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/staged/tabdiff/adapter_report.json +3 -0
  15. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/staged/tabdiff/adapter_transforms_applied.json +3 -0
  16. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/staged/tabdiff/model_input_manifest.json +3 -0
  17. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabdiff-m11-304887-20260501_171949.csv +3 -0
  18. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabdiff_train_meta.json +3 -0
  19. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/X_cat_test.npy +3 -0
  20. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/X_cat_train.npy +3 -0
  21. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/X_cat_val.npy +3 -0
  22. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/X_num_test.npy +3 -0
  23. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/X_num_train.npy +3 -0
  24. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/X_num_val.npy +3 -0
  25. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/info.json +3 -0
  26. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/real.csv +3 -0
  27. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/test.csv +3 -0
  28. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/val.csv +3 -0
  29. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/y_test.npy +3 -0
  30. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/y_train.npy +3 -0
  31. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/y_val.npy +3 -0
  32. syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/train_20260501_164344.log +3 -0
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/_tabdiff_gen.py ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ td = r"/workspace/TabDiff"
4
+ name = r"pipeline_m11"
5
+ src = r"/work/output-Benchmark-trainonly-v1/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11"
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_m11/adapter_learnable/model_500.pt",
20
+ "--num_samples_to_generate", str(int(304887)),
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-Benchmark-trainonly-v1/m11/tabdiff/tabdiff-m11-20260501_164336/tabdiff-m11-304887-20260501_171949.csv")
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/_tabdiff_train.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ td = r"/workspace/TabDiff"
4
+ name = r"pipeline_m11"
5
+ src = r"/work/output-Benchmark-trainonly-v1/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11"
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
+ ])
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/gen_20260501_171949.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8c64eb68bf8e8f50e5373f9e470115efdf91539cad3fd613278d73dab71bef9
3
+ size 27885
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8ac55dbf17c55169dabaca9416fbc85d2e0583874335078e6fa0315f6e59da3
3
+ size 1363
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/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
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c72ff0473a3e4d42dad399ccbdb6e25cab814c11f02c3a1babfb03fd5d70f458
3
+ size 5400
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb18c9a3847a7fe402ca54d6b81c82b5f972dabd33e76640650e8b456eab8ae9
3
+ size 932
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abaa81c0a7c2ae34f694d831ecf3248ea8ab77d6476d8f8edd60cc401ec6e3de
3
+ size 6216
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c2c3eceab681c0b28ce6fe62b89c77434136be3e81d89d2196b54aed7ef3893
3
+ size 917
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b36d25a7769c0cbf2fcdd4f1ea3c717718c21b7d7f3af2e7650de64254c8a17d
3
+ size 1160
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45a031a23f36e6dec485a2c50a0314a1e7d92b0f084fe2fe226b068b2781783d
3
+ size 2143487
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:929bf5af6a31a08475878fb8f509e60d9b9aa0a48344ec40053e242f33eb15aa
3
+ size 17145673
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd630014d7f4fb9141831d29ca94cf2849de0e2a950913df63df846778180600
3
+ size 2143479
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/staged/tabdiff/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20b9a19957a2e9b7868a3ec2cf039a51e338e8c24219cf2dd94b1fc3d6eddb76
3
+ size 323
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/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
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/staged/tabdiff/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:110d206b95beea76fb592f9ae0a6b0dd35374ecc50c7d14748dc719de73f62c3
3
+ size 6415
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabdiff-m11-304887-20260501_171949.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfd35dc74435970ac6d86428ee75928ca6e6d686b7917e78e86e264a49ae9608
3
+ size 16422390
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabdiff_train_meta.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e598720526ed26023ef0b05c770ff3a859a4ac4a20978485c7f5d8452e35334
3
+ size 83
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/X_cat_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a78503c9cba18dd962724db14a8b0efea06faf5f9d4011b56afefd0452414be1
3
+ size 12195608
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/X_cat_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a78503c9cba18dd962724db14a8b0efea06faf5f9d4011b56afefd0452414be1
3
+ size 12195608
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/X_cat_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a78503c9cba18dd962724db14a8b0efea06faf5f9d4011b56afefd0452414be1
3
+ size 12195608
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/X_num_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d5f5c8cae5f4eff29b6dddc227ad5e86666e96261d2c244dc799c8833de4e3f
3
+ size 7317416
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/X_num_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d5f5c8cae5f4eff29b6dddc227ad5e86666e96261d2c244dc799c8833de4e3f
3
+ size 7317416
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/X_num_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d5f5c8cae5f4eff29b6dddc227ad5e86666e96261d2c244dc799c8833de4e3f
3
+ size 7317416
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31a921ad9b1552f591e9afb50db1b9209d7a1ac4dc6f9e6f0dd897c102c773f2
3
+ size 2396
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:828ef07c841ea828f47adb845accc89a2a9b60ff3c20f37f6853e378d48f0559
3
+ size 13345301
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:828ef07c841ea828f47adb845accc89a2a9b60ff3c20f37f6853e378d48f0559
3
+ size 13345301
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:828ef07c841ea828f47adb845accc89a2a9b60ff3c20f37f6853e378d48f0559
3
+ size 13345301
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2667c7014e3dfcccbbfd9fb6e698a6d6b81478c60b908d90df31356e8622c88
3
+ size 2439224
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2667c7014e3dfcccbbfd9fb6e698a6d6b81478c60b908d90df31356e8622c88
3
+ size 2439224
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/tabular_bundle/pipeline_m11/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2667c7014e3dfcccbbfd9fb6e698a6d6b81478c60b908d90df31356e8622c88
3
+ size 2439224
syntheticSuccess/m11/tabdiff/tabdiff-m11-20260501_164336/train_20260501_164344.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbf98a386759f4c41a96c47dd27c8770f829ffe91dc4a07755c6d94aac297ac1
3
+ size 7828071