TabQueryBench commited on
Commit
205cd34
·
verified ·
1 Parent(s): 027b29f

Add files using upload-large-folder tool

Browse files
Files changed (32) hide show
  1. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/_tabdiff_gen.py +36 -0
  2. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/_tabdiff_train.py +21 -0
  3. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/gen_20260501_195123.log +3 -0
  4. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/input_snapshot.json +3 -0
  5. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/models_tabdiff/trained.pt +3 -0
  6. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/public_gate/normalized_schema_snapshot.json +3 -0
  7. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/public_gate/public_gate_report.json +3 -0
  8. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/public_gate/staged_input_manifest.json +3 -0
  9. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/runtime_result.json +3 -0
  10. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/staged/public/staged_features.json +3 -0
  11. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/staged/public/test.csv +3 -0
  12. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/staged/public/train.csv +3 -0
  13. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/staged/public/val.csv +3 -0
  14. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/staged/tabdiff/adapter_report.json +3 -0
  15. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/staged/tabdiff/adapter_transforms_applied.json +3 -0
  16. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/staged/tabdiff/model_input_manifest.json +3 -0
  17. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabdiff-n17-11600-20260501_195123.csv +3 -0
  18. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabdiff_train_meta.json +3 -0
  19. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/X_cat_test.npy +3 -0
  20. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/X_cat_train.npy +3 -0
  21. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/X_cat_val.npy +3 -0
  22. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/X_num_test.npy +3 -0
  23. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/X_num_train.npy +3 -0
  24. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/X_num_val.npy +3 -0
  25. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/info.json +3 -0
  26. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/real.csv +3 -0
  27. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/test.csv +3 -0
  28. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/val.csv +3 -0
  29. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/y_test.npy +3 -0
  30. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/y_train.npy +3 -0
  31. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/y_val.npy +3 -0
  32. syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/train_20260501_194732.log +3 -0
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/_tabdiff_gen.py ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ td = r"/workspace/TabDiff"
4
+ name = r"pipeline_n17"
5
+ src = r"/work/output-Benchmark-trainonly-v1/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17"
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_n17/adapter_learnable/model_500.pt",
20
+ "--num_samples_to_generate", str(int(11600)),
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/n17/tabdiff/tabdiff-n17-20260501_194732/tabdiff-n17-11600-20260501_195123.csv")
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/_tabdiff_train.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ td = r"/workspace/TabDiff"
4
+ name = r"pipeline_n17"
5
+ src = r"/work/output-Benchmark-trainonly-v1/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17"
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/n17/tabdiff/tabdiff-n17-20260501_194732/gen_20260501_195123.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f13962e6d374c1a3d80216ca93136ae5b2edac66649528c77e04f2289ee5a15
3
+ size 5242
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f831334880e8726d554d580317ab6c96d8e9a4c4674d98c627c1307db3e14f0
3
+ size 1357
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/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/n17/tabdiff/tabdiff-n17-20260501_194732/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46d581404aea0fcdc8875aec9ad8cd6dc3cd2b1aa28b0863a8a3b478386b6c6a
3
+ size 4649
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2cddbfd0155b58153fb0acfbb103bc08c85970d87c9cb016cd776a9e547281f
3
+ size 919
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbbebae62afcb316692e4bd260dca185f31a60c29a6c53155a4d3d221d4a4df2
3
+ size 5465
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98f15da782b9afff59a7ed2389f52e105a21e7eb7cb2407853777bf8f399cf16
3
+ size 915
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76e397b4053cfc82d5e8422d0583f157bf27d118ba5cf68394b2b4837c6ea526
3
+ size 960
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5efaac201d71f432cdd71c81d2b240ee41c5df078835b26188033662f8d201af
3
+ size 38581
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:373383578478c8df244051d26a774f0126f89a64fbb8b53842ed634266dc32fa
3
+ size 307507
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:836ea0bab67a27cd05e1bd0251ccb57666f70fa3df26d42fe4ecb971b84d0125
3
+ size 38466
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/staged/tabdiff/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62de06ba4bb07f61bfd41643c45b83bb6cc715b259926917072217807b890491
3
+ size 323
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/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/n17/tabdiff/tabdiff-n17-20260501_194732/staged/tabdiff/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ea9fe6261855860b4941913bd8a68454466ebfc52d785b1761d0689bca46df3
3
+ size 5664
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabdiff-n17-11600-20260501_195123.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd46c0bcd240008c4ffd3c8b96386d58678d898d93bbe769ee6f3ea9aea4620b
3
+ size 577692
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabdiff_train_meta.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7f335b899d14aae1bd24bd05af04284e4083e23347888acd0e8558ea7aebcd8
3
+ size 83
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/X_cat_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8380617f3484c7f33a4c054834eb545aa65bbf097716901f784d377bec5e358a
3
+ size 128
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/X_cat_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8380617f3484c7f33a4c054834eb545aa65bbf097716901f784d377bec5e358a
3
+ size 128
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/X_cat_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8380617f3484c7f33a4c054834eb545aa65bbf097716901f784d377bec5e358a
3
+ size 128
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/X_num_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:555eeb2e72ddbfdf3483c6259863dbcc31923450afc9b4e16cbe84c76776be58
3
+ size 417728
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/X_num_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:555eeb2e72ddbfdf3483c6259863dbcc31923450afc9b4e16cbe84c76776be58
3
+ size 417728
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/X_num_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:555eeb2e72ddbfdf3483c6259863dbcc31923450afc9b4e16cbe84c76776be58
3
+ size 417728
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08c1e92b6e6a301cc62bfee4e413baab4a5fc71240b2d8d72245428837f6fddc
3
+ size 2212
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc10474df7e31319b06627ea077f4c6ae37fdb6f2ff4a57119523d13e50332f8
3
+ size 307428
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc10474df7e31319b06627ea077f4c6ae37fdb6f2ff4a57119523d13e50332f8
3
+ size 307428
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc10474df7e31319b06627ea077f4c6ae37fdb6f2ff4a57119523d13e50332f8
3
+ size 307428
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a8cce56b9491be801ba2e7530979e17a501bf254df4b5b8ae0bec9594c626b8
3
+ size 92928
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a8cce56b9491be801ba2e7530979e17a501bf254df4b5b8ae0bec9594c626b8
3
+ size 92928
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/tabular_bundle/pipeline_n17/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a8cce56b9491be801ba2e7530979e17a501bf254df4b5b8ae0bec9594c626b8
3
+ size 92928
syntheticSuccess/n17/tabdiff/tabdiff-n17-20260501_194732/train_20260501_194732.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70af5705c2dbc5bac63ad224d9e530867d4e40fb4999c6feb2c1ae3c7a5dc8a8
3
+ size 445316