TabQueryBench commited on
Commit
3ac2b08
·
verified ·
1 Parent(s): b133662

Add files using upload-large-folder tool

Browse files
Files changed (32) hide show
  1. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/_tabdiff_gen.py +36 -0
  2. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/_tabdiff_train.py +21 -0
  3. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/gen_20260429_043402.log +3 -0
  4. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/input_snapshot.json +3 -0
  5. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/models_tabdiff/trained.pt +3 -0
  6. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/normalized_schema_snapshot.json +3 -0
  7. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/public_gate_report.json +3 -0
  8. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/staged_input_manifest.json +3 -0
  9. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/runtime_result.json +3 -0
  10. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/staged_features.json +3 -0
  11. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/test.csv +3 -0
  12. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/train.csv +3 -0
  13. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/val.csv +3 -0
  14. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/staged/tabdiff/adapter_report.json +3 -0
  15. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/staged/tabdiff/adapter_transforms_applied.json +3 -0
  16. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/staged/tabdiff/model_input_manifest.json +3 -0
  17. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabdiff-m6-9864-20260429_043402.csv +3 -0
  18. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabdiff_train_meta.json +3 -0
  19. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_cat_test.npy +3 -0
  20. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_cat_train.npy +3 -0
  21. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_cat_val.npy +3 -0
  22. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_num_test.npy +3 -0
  23. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_num_train.npy +3 -0
  24. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_num_val.npy +3 -0
  25. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/info.json +3 -0
  26. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/real.csv +3 -0
  27. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/test.csv +3 -0
  28. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/val.csv +3 -0
  29. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/y_test.npy +3 -0
  30. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/y_train.npy +3 -0
  31. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/y_val.npy +3 -0
  32. syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/train_20260429_042701.log +3 -0
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/_tabdiff_gen.py ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ td = r"/workspace/TabDiff"
4
+ name = r"pipeline_m6"
5
+ src = r"/work/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6"
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_m6/adapter_learnable/model_500.pt",
20
+ "--num_samples_to_generate", str(int(9864)),
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/m6/tabdiff/tabdiff-m6-20260429_042700/tabdiff-m6-9864-20260429_043402.csv")
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/_tabdiff_train.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ td = r"/workspace/TabDiff"
4
+ name = r"pipeline_m6"
5
+ src = r"/work/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6"
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/m6/tabdiff/tabdiff-m6-20260429_042700/gen_20260429_043402.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe1a358e1512516c736c71ce06d078eebb0619b7a50a4ffe8d81da33d1a568ac
3
+ size 4744
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f20dc2a9ed2699a6e936e6f23a450d16876fc7c030ff0e4365734f73fd40553a
3
+ size 1348
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/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/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a347e1961ed33117b9d30b34fc15249721c7bd0b25fb31ac7f974d158104bdd
3
+ size 8408
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eab3321ed4d9b51e430632d2aedeca5d0260df7acff58b7d732c556dd377db9d
3
+ size 918
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68799ac489f30d135ac8c436fc65901da3202a95c6b1f2b4ed717fad613bb1a8
3
+ size 9214
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6321349f39916ea27cecb7815caf91e306e44eeacc7eea7224ed4fd5405c753a
3
+ size 615
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23eac1d28d264cb53a977ae6229286741b38cdeec8b02eb2ee5f9a2949661e29
3
+ size 1780
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d16d0389cb0fe4b23bab344dc10070de6678357a9452f9f620d0eeba66a6b12d
3
+ size 116376
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1f0338c367408dc21d5a4ec9cdc5d3fe8188916db6085f3fd326304a55551e1
3
+ size 924849
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb9169f3c7213420491d9b709ee1cc650aeaed732fa77dcbd6ffe3583366b2d4
3
+ size 116198
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/staged/tabdiff/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d34d3249741686e8585077e790d1dd3d2542e9b47c2b72adff22c3c50970b17
3
+ size 321
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/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/m6/tabdiff/tabdiff-m6-20260429_042700/staged/tabdiff/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:883462fe5bfb43b9be0d59061dcefdb765e9b21954dc5365b666d7e9d1d818b0
3
+ size 9411
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabdiff-m6-9864-20260429_043402.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9da32cc7b0fed8560ec43450ee8b479ceba8fcb72f2aa87a11a3060566b760e9
3
+ size 851856
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabdiff_train_meta.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0645f4366fbda09cf14ae6cc0991a36782cb648d99620a5598928436ba44c17
3
+ size 82
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_cat_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33b3ba6d661fb460428f33f010200f46937687463db68f5f919e4743a9802815
3
+ size 236864
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_cat_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33b3ba6d661fb460428f33f010200f46937687463db68f5f919e4743a9802815
3
+ size 236864
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_cat_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33b3ba6d661fb460428f33f010200f46937687463db68f5f919e4743a9802815
3
+ size 236864
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_num_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:960545f531401f06b1ef44d43f0e45228b36d96b6f6dbf87b8f6ad8578e915f5
3
+ size 552512
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_num_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:960545f531401f06b1ef44d43f0e45228b36d96b6f6dbf87b8f6ad8578e915f5
3
+ size 552512
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_num_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:960545f531401f06b1ef44d43f0e45228b36d96b6f6dbf87b8f6ad8578e915f5
3
+ size 552512
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e14c47db209e521986f0a29312b59ac6e4acfc78afd40251647fd4ee375796eb
3
+ size 3584
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da71c5d7ca6752fd26c431f7fefb3701600af7c659d4597ba65f755dcaf7b902
3
+ size 829594
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da71c5d7ca6752fd26c431f7fefb3701600af7c659d4597ba65f755dcaf7b902
3
+ size 829594
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da71c5d7ca6752fd26c431f7fefb3701600af7c659d4597ba65f755dcaf7b902
3
+ size 829594
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4495cd81dd4e25e4cece22309308cf6ac32d53e46ab3410a78c7e12900bd8f9e
3
+ size 79040
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4495cd81dd4e25e4cece22309308cf6ac32d53e46ab3410a78c7e12900bd8f9e
3
+ size 79040
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4495cd81dd4e25e4cece22309308cf6ac32d53e46ab3410a78c7e12900bd8f9e
3
+ size 79040
syntheticSuccess/m6/tabdiff/tabdiff-m6-20260429_042700/train_20260429_042701.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4335aee0b3501b5df97d1dc245f7249e7c2f16190805842a0891e45c31c1fe5d
3
+ size 450169