TabQueryBench commited on
Commit
e8da249
·
verified ·
1 Parent(s): dc91333

Add files using upload-large-folder tool

Browse files
Files changed (32) hide show
  1. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/_tabdiff_gen.py +36 -0
  2. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/_tabdiff_train.py +21 -0
  3. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/gen_20260501_110122.log +3 -0
  4. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/input_snapshot.json +3 -0
  5. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/models_tabdiff/trained.pt +3 -0
  6. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/normalized_schema_snapshot.json +3 -0
  7. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/public_gate_report.json +3 -0
  8. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/staged_input_manifest.json +3 -0
  9. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/runtime_result.json +3 -0
  10. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/staged_features.json +3 -0
  11. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/test.csv +3 -0
  12. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/train.csv +3 -0
  13. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/val.csv +3 -0
  14. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/staged/tabdiff/adapter_report.json +3 -0
  15. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/staged/tabdiff/adapter_transforms_applied.json +3 -0
  16. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/staged/tabdiff/model_input_manifest.json +3 -0
  17. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabdiff-c14-240000-20260501_110122.csv +3 -0
  18. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabdiff_train_meta.json +3 -0
  19. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_cat_test.npy +3 -0
  20. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_cat_train.npy +3 -0
  21. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_cat_val.npy +3 -0
  22. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_num_test.npy +3 -0
  23. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_num_train.npy +3 -0
  24. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_num_val.npy +3 -0
  25. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/info.json +3 -0
  26. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/real.csv +3 -0
  27. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/test.csv +3 -0
  28. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/val.csv +3 -0
  29. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/y_test.npy +3 -0
  30. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/y_train.npy +3 -0
  31. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/y_val.npy +3 -0
  32. syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/train_20260501_043526.log +3 -0
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/_tabdiff_gen.py ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ td = r"/workspace/TabDiff"
4
+ name = r"pipeline_c14"
5
+ src = r"/work/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14"
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_c14/adapter_learnable/model_500.pt",
20
+ "--num_samples_to_generate", str(int(240000)),
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/c14/tabdiff/tabdiff-c14-20260501_043512/tabdiff-c14-240000-20260501_110122.csv")
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/_tabdiff_train.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ td = r"/workspace/TabDiff"
4
+ name = r"pipeline_c14"
5
+ src = r"/work/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14"
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/c14/tabdiff/tabdiff-c14-20260501_043512/gen_20260501_110122.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63ae109986b1db6a533baca7c7a01c6d739db8319ad5c44f1c94a244c6f79fe1
3
+ size 102718
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f23a138cbea0ffbcfa69c56aa336508d97bd5b507c6ef6e37d77707f9df1aa8a
3
+ size 1364
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/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/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e559ea7c300bee8dca838c3419b8517cfe17c153470e56a6f1c1fab72b7a10b
3
+ size 11306
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:465dc423a1ca46fea5f39f1b0c83b6cce2c16cdb3be3f582e8ce20fbce674981
3
+ size 920
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:488cec3168015bbd05561159827290914717c39877c6ccb53feb254fdfbf5ba2
3
+ size 12122
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01474e3b3dd06e1a6b80611f2757d6ac53962915b70497a237c5b991772aff2b
3
+ size 921
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c92cf6530ea76cef171daa9d723513c36aafe5dc5d8f5dfc27778090e2b0c03
3
+ size 2288
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:617ecb620416375c67546e0fa5a8b9a3923d689bda904dc23824ea175d1f8597
3
+ size 3965839
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12398ccb68a2499b9c126f61b25f03c36a65f026d755e1d5ff5653e614676167
3
+ size 31717079
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f40dbd7bbd9e2783c24d0d12ec35a85581835d45238774eb0676de44a734feda
3
+ size 3965919
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/staged/tabdiff/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc768340f3a18cd059ff345ad132cf7260733277b50c464a8557f5b699e832a1
3
+ size 323
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/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/c14/tabdiff/tabdiff-c14-20260501_043512/staged/tabdiff/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73437f0eea4be1eb0d0527587cdfb47b4af986207d91ea8da07172c8cfe44cb8
3
+ size 12321
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabdiff-c14-240000-20260501_110122.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbb609a74efefda9b82c72914f3deb8d09fa966855b1f8e13eeba3a8640d8d70
3
+ size 18538861
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabdiff_train_meta.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac8b47e15135d0631f59f5e87450da95d9192796d1bda0a31ce296fd87e6b6cd
3
+ size 83
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_cat_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4db5fc039c0a3755f8187753d8ff1576d6ae627c7fdd403f3fa38914bed677b0
3
+ size 38400128
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_cat_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4db5fc039c0a3755f8187753d8ff1576d6ae627c7fdd403f3fa38914bed677b0
3
+ size 38400128
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_cat_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4db5fc039c0a3755f8187753d8ff1576d6ae627c7fdd403f3fa38914bed677b0
3
+ size 38400128
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_num_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3026532dc1e8f61b12f8f829ec618733e69f9da70d40e8234069ff10f3381878
3
+ size 3840128
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_num_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3026532dc1e8f61b12f8f829ec618733e69f9da70d40e8234069ff10f3381878
3
+ size 3840128
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_num_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3026532dc1e8f61b12f8f829ec618733e69f9da70d40e8234069ff10f3381878
3
+ size 3840128
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b9756ba40822955a89d534442ff6897df836f71901792e17bc3d2602352efed
3
+ size 3766
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9b7f2fe49e7531047723273dcbccd3c512c0fa436d0923e37642df167967bda
3
+ size 16349714
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9b7f2fe49e7531047723273dcbccd3c512c0fa436d0923e37642df167967bda
3
+ size 16349714
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9b7f2fe49e7531047723273dcbccd3c512c0fa436d0923e37642df167967bda
3
+ size 16349714
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f723b0138e622255ce8db1d27cf9b51554364c371989801193edd4c87fc0921
3
+ size 1920128
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f723b0138e622255ce8db1d27cf9b51554364c371989801193edd4c87fc0921
3
+ size 1920128
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f723b0138e622255ce8db1d27cf9b51554364c371989801193edd4c87fc0921
3
+ size 1920128
syntheticSuccess/c14/tabdiff/tabdiff-c14-20260501_043512/train_20260501_043526.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eef2b3b6305fb5ff348bf714299ad8f786067e06c2ffa611fa6b4698e212d65b
3
+ size 9711741