TabQueryBench commited on
Commit
a50ede9
·
verified ·
1 Parent(s): 65b0332

Add remaining 5090 success run n1/tabdiff/tabdiff-n1-20260427_154235

Browse files
Files changed (31) hide show
  1. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/_tabdiff_gen.py +36 -0
  2. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/_tabdiff_train.py +21 -0
  3. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/input_snapshot.json +3 -0
  4. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/models_tabdiff/trained.pt +3 -0
  5. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/public_gate/normalized_schema_snapshot.json +3 -0
  6. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/public_gate/public_gate_report.json +3 -0
  7. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/public_gate/staged_input_manifest.json +3 -0
  8. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/runtime_result.json +3 -0
  9. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/staged/public/staged_features.json +3 -0
  10. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/staged/public/test.csv +3 -0
  11. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/staged/public/train.csv +3 -0
  12. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/staged/public/val.csv +3 -0
  13. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/staged/tabdiff/adapter_report.json +3 -0
  14. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/staged/tabdiff/adapter_transforms_applied.json +3 -0
  15. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/staged/tabdiff/model_input_manifest.json +3 -0
  16. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabdiff-n1-3680-20260427_155015.csv +3 -0
  17. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabdiff_train_meta.json +3 -0
  18. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/X_cat_test.npy +3 -0
  19. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/X_cat_train.npy +3 -0
  20. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/X_cat_val.npy +3 -0
  21. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/X_num_test.npy +3 -0
  22. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/X_num_train.npy +3 -0
  23. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/X_num_val.npy +3 -0
  24. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/info.json +3 -0
  25. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/real.csv +3 -0
  26. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/test.csv +3 -0
  27. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/val.csv +3 -0
  28. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/y_test.npy +3 -0
  29. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/y_train.npy +3 -0
  30. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/y_val.npy +3 -0
  31. 5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/train_20260427_154235.log +3 -0
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/_tabdiff_gen.py ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ td = r"/workspace/TabDiff"
4
+ name = r"pipeline_ds"
5
+ src = r"/work/output-SpecializedModels/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds"
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_ds/adapter_learnable/model_500.pt",
20
+ "--num_samples_to_generate", str(int(3680)),
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-SpecializedModels/n1/tabdiff/tabdiff-n1-20260427_154235/tabdiff-n1-3680-20260428_051414.csv")
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/_tabdiff_train.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ td = r"/workspace/TabDiff"
4
+ name = r"pipeline_ds"
5
+ src = r"/work/output-SpecializedModels/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds"
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
+ ])
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:106cb9ad40948fa10378a9e54dfab26b07d75505b98b7c5fdf7bd37f39217aa3
3
+ size 1348
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/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
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67595708c2c19190410f8afea4b51e9a39f1e5f68e9d4fb4df13bb9b0c08edc8
3
+ size 27287
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85dc3b45dc260b7c3fdc9b10b693ffcbda43a705dad8eac67757ee71833dfcf5
3
+ size 912
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ee372c39f44e94f6a2049a5025c2e9965ac766656188970fc6ad89341a9ec43
3
+ size 28068
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a575d6a16adcaed5464170bd27796fd074b2814e391d73b76817bce3a502e56
3
+ size 844
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0541ebc162054f0e18e2949b26487b63a9a875b658131594c2420f9da180e494
3
+ size 5900
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:165b9f8df9afdbccf1a6362155a785860134438138af92d7288cbe88b4965b03
3
+ size 111841
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f723c8c6f475f4dee37b81af1fc803cca3362ca22bea09c90cc39404b034b23
3
+ size 885832
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff8bfb6a9fa9b786c8e9a34d4619140e43ad25ca275d2459cc179352865f670c
3
+ size 111513
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/staged/tabdiff/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9aa27db968ee202851686f0f1f23a14d65c136e01e7cee24fcea4182d8d969d
3
+ size 316
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/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
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/staged/tabdiff/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:684d3ac04553abbdc68f999a09e42fd5c83b6301cc95d7a1d28639f83d881104
3
+ size 28260
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabdiff-n1-3680-20260427_155015.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1cfc7a1859ddb2d37dc1ee9fb9b5e41a3a24349b99c426125d3cd4c927cecefb
3
+ size 935086
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabdiff_train_meta.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f847e0ef723d87c8f3448e352f47cc24c93249a7c601dcf2903fb003075437a8
3
+ size 82
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/X_cat_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f718839a032e3dae9a8ecb2b0add40834a0ccb0829ab3ae96dc7fdfd00c73d0
3
+ size 11192
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/X_cat_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76199d9b4a3bd906e1eeba6f8a2a0d2e796065d0d3b23fd29fe76901a7f62c2c
3
+ size 88448
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/X_cat_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7efa54b53787c75cbeb9d773ca99b623b9f564270a4862be6bf2d4706a556347
3
+ size 11168
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/X_num_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:acdcc2c07184560f2f785982d9fb460e72af6f26da7c6fda147db4d97ac43c5b
3
+ size 99704
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/X_num_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ed20a11b4ae7a50b2b71098612f94fc07e1682a2a9484b330757848870dd5ed
3
+ size 795008
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/X_num_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a26160404b4b133aeb8a0c11f68f199e5d321818810ce09231b66fe61f5cf8f
3
+ size 99488
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0638506518ef57f2d71c10a6eb85037eb6af18ef4a66c5ded4e6f2d882a41b70
3
+ size 10981
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed67017a1431f97d25d5be1cab85393cefcbe81f5f63bb26cc3c5d0ad1e58174
3
+ size 863701
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aaff2262cba41fe49c9747533fa2198b7d62ccf540662164f1642ef295619ab8
3
+ size 109073
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:019789b9eca5184bb07dde96c96e66c025042cc2ea7a423b06bfe16604d84372
3
+ size 108751
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2db43b862ef45fe7549fa4e9616d3d1345e6035d825acacefeb5b01f107681b9
3
+ size 3816
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95fccfea951830a81be642ed8a6b7b609467a19b70ceeca6a4c362957b7924a6
3
+ size 29568
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/tabular_bundle/pipeline_ds/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da6aaad133711be14496270ab8c1f611765c6d339c590e27f5e4b67a8f193c64
3
+ size 3808
5090-Success/n1/tabdiff/tabdiff-n1-20260427_154235/train_20260427_154235.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbd8f0eb52906703d467abfb2dbb892f590ff38f92de01839d0cf8beb93605a2
3
+ size 301046