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

Add files using upload-large-folder tool

Browse files
Files changed (32) hide show
  1. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/_tabdiff_gen.py +36 -0
  2. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/_tabdiff_train.py +21 -0
  3. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/gen_20260501_194646.log +3 -0
  4. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/input_snapshot.json +3 -0
  5. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/models_tabdiff/trained.pt +3 -0
  6. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/public_gate/normalized_schema_snapshot.json +3 -0
  7. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/public_gate/public_gate_report.json +3 -0
  8. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/public_gate/staged_input_manifest.json +3 -0
  9. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/runtime_result.json +3 -0
  10. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/staged/public/staged_features.json +3 -0
  11. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/staged/public/test.csv +3 -0
  12. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/staged/public/train.csv +3 -0
  13. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/staged/public/val.csv +3 -0
  14. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/staged/tabdiff/adapter_report.json +3 -0
  15. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/staged/tabdiff/adapter_transforms_applied.json +3 -0
  16. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/staged/tabdiff/model_input_manifest.json +3 -0
  17. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabdiff-n16-227845-20260501_194646.csv +3 -0
  18. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabdiff_train_meta.json +3 -0
  19. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/X_cat_test.npy +3 -0
  20. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/X_cat_train.npy +3 -0
  21. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/X_cat_val.npy +3 -0
  22. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/X_num_test.npy +3 -0
  23. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/X_num_train.npy +3 -0
  24. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/X_num_val.npy +3 -0
  25. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/info.json +3 -0
  26. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/real.csv +3 -0
  27. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/test.csv +3 -0
  28. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/val.csv +3 -0
  29. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/y_test.npy +3 -0
  30. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/y_train.npy +3 -0
  31. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/y_val.npy +3 -0
  32. syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/train_20260501_191724.log +3 -0
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/_tabdiff_gen.py ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ td = r"/workspace/TabDiff"
4
+ name = r"pipeline_n16"
5
+ src = r"/work/output-Benchmark-trainonly-v1/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16"
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_n16/adapter_learnable/model_500.pt",
20
+ "--num_samples_to_generate", str(int(227845)),
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/n16/tabdiff/tabdiff-n16-20260501_191651/tabdiff-n16-227845-20260501_194646.csv")
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/_tabdiff_train.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ td = r"/workspace/TabDiff"
4
+ name = r"pipeline_n16"
5
+ src = r"/work/output-Benchmark-trainonly-v1/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16"
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/n16/tabdiff/tabdiff-n16-20260501_191651/gen_20260501_194646.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f27e10ed7d4d73a44bf8fa55b6dd4151d827d32c060f9fb3ee03173df8f2502
3
+ size 23334
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f53c08364931bbb099f7509bea1f15fb88b1feadbd1b228f363c550a8266a3e
3
+ size 1368
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/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/n16/tabdiff/tabdiff-n16-20260501_191651/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8e13e1c6e622699e221296c60f78826768eb2924cb4fed7c34a19ef5f2b80a4
3
+ size 16264
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea494477cf967f69e54af6c8693533ac8881a2a84c785ee01246213ed0bd2dde
3
+ size 919
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b8d34f97809f6eab3626ece2db0e8664fd19961c9b8272a392b5d9bda87fb3e
3
+ size 17080
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d2a4f5ffe611b6d193bcac2605f75cba99baa508f71ca720343c22180508228
3
+ size 918
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fed791ef5182375f73ad93592b97cc6ac631c25c28e2e31e2c97e78c3a29855b
3
+ size 2784
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d69f73fdce5c2172678b0625c43058e7b6c8a991cee8c51c62b4e8f9200ddda9
3
+ size 15025273
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9803535990b2822a664c439816ab91c39aeedc38f99ade09a4347fe013876a3
3
+ size 120653578
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3abf3e2b22202b610a02bb43c40fc2751b5ff791d7c12fbc78ec217fdd5bebb2
3
+ size 15025064
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/staged/tabdiff/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71ff7498231d5cfabe3825448377a8ca9945cf5e0311249cda2bc1a67cf27745
3
+ size 323
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/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/n16/tabdiff/tabdiff-n16-20260501_191651/staged/tabdiff/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f98509cbc0b7e0d723b06119b484ced4692b6b87097bacfeee7c7c45b1fe493b
3
+ size 17279
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabdiff-n16-227845-20260501_194646.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37bf3b8801fb6f3d1816a1e46d63ef92e850479e64c1668f7a2ba28619683e9c
3
+ size 75719995
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabdiff_train_meta.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:111109bb4fe3b3940b95f35327d76ad8c37bf510ac4473706df75ec5daaceb6a
3
+ size 83
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/X_cat_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d584e904bdf7d7d9317093dc13374950e0bc9cf30059bf8c421fc3a52469f2d
3
+ size 128
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/X_cat_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d584e904bdf7d7d9317093dc13374950e0bc9cf30059bf8c421fc3a52469f2d
3
+ size 128
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/X_cat_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d584e904bdf7d7d9317093dc13374950e0bc9cf30059bf8c421fc3a52469f2d
3
+ size 128
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/X_num_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b985d943ff2eb3776c1da61b5cfd77fb18b76ad3f6e2b916f8d1b9f9ec8635d5
3
+ size 27341528
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/X_num_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b985d943ff2eb3776c1da61b5cfd77fb18b76ad3f6e2b916f8d1b9f9ec8635d5
3
+ size 27341528
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/X_num_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b985d943ff2eb3776c1da61b5cfd77fb18b76ad3f6e2b916f8d1b9f9ec8635d5
3
+ size 27341528
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f6a54089ff2eca532f383f3abf6f1d2cc0900ff5bce192a91f34d14967c8778
3
+ size 5472
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6d729ed427e4c13d1bef7313c96b10abb9076e8ad66a549d084db80859f8f01
3
+ size 120653540
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6d729ed427e4c13d1bef7313c96b10abb9076e8ad66a549d084db80859f8f01
3
+ size 120653540
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6d729ed427e4c13d1bef7313c96b10abb9076e8ad66a549d084db80859f8f01
3
+ size 120653540
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5320385ca99e9d5210ae94d6b3338d824757df7cb44c55282bf93277d9d3249
3
+ size 1822888
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5320385ca99e9d5210ae94d6b3338d824757df7cb44c55282bf93277d9d3249
3
+ size 1822888
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/tabular_bundle/pipeline_n16/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5320385ca99e9d5210ae94d6b3338d824757df7cb44c55282bf93277d9d3249
3
+ size 1822888
syntheticSuccess/n16/tabdiff/tabdiff-n16-20260501_191651/train_20260501_191724.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12d7be2bf78d652d6cff2e43785fc884d21968a6ba28348223d08c5b928754b9
3
+ size 6258086