Add remaining 5090 success run n4/tabdiff/tabdiff-n4-20260427_162220
Browse files- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/_tabdiff_gen.py +36 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/_tabdiff_train.py +21 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/input_snapshot.json +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/models_tabdiff/trained.pt +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/public_gate/normalized_schema_snapshot.json +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/public_gate/public_gate_report.json +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/public_gate/staged_input_manifest.json +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/runtime_result.json +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/staged/public/staged_features.json +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/staged/public/test.csv +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/staged/public/train.csv +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/staged/public/val.csv +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/staged/tabdiff/adapter_report.json +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/staged/tabdiff/adapter_transforms_applied.json +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/staged/tabdiff/model_input_manifest.json +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabdiff-n4-1595-20260427_163215.csv +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabdiff_train_meta.json +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/X_cat_test.npy +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/X_cat_train.npy +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/X_cat_val.npy +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/X_num_test.npy +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/X_num_train.npy +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/X_num_val.npy +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/info.json +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/real.csv +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/test.csv +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/val.csv +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/y_test.npy +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/y_train.npy +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/y_val.npy +3 -0
- 5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/train_20260427_162220.log +3 -0
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/_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/n4/tabdiff/tabdiff-n4-20260427_162220/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(1595)),
|
| 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/n4/tabdiff/tabdiff-n4-20260427_162220/tabdiff-n4-1595-20260428_051501.csv")
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/_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/n4/tabdiff/tabdiff-n4-20260427_162220/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/n4/tabdiff/tabdiff-n4-20260427_162220/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d91bd10113c1ec3fe731b8eefd847092e51782ef0eb72e3b3ebdd1151b8bacc7
|
| 3 |
+
size 1350
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/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/n4/tabdiff/tabdiff-n4-20260427_162220/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4a51e0665dadfbffebdf82b417fe43fa562204275dc2da832b4493e71b17a14
|
| 3 |
+
size 60257
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b604b926bfc9c3f4d4cdc5be092ec6706130ba4a7cb55d52dfe083def9fb5a75
|
| 3 |
+
size 909
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a4eea3fa80ad314c93515422268d041784c09c75ad130e18b5222222552bdc8
|
| 3 |
+
size 61038
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c7bc01db96d70d445d1fc414af4279226da858981d60567b46e551804fbbb762
|
| 3 |
+
size 844
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b0659495a3ed560d31ee16ac86c232a810e297e56b2bc8da97d5de72e0c774e
|
| 3 |
+
size 12433
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:caa60b496a1710d39671c1777212c13b0a2d4833e15858913d1e3b6743f7fd09
|
| 3 |
+
size 110901
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d231783209c86c6e6cdb1f56f30fba81c3163dc137fc5cfbd0dd1b7360767acc
|
| 3 |
+
size 878053
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fee3c941aad07723b15b7e43c645c70742e10ae08f8b1e6e837d64212886ef22
|
| 3 |
+
size 111232
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c991223d5993e4130d7405b9ba2a3cd352a177d5a990c4a8e18c7267be11a9d
|
| 3 |
+
size 316
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/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/n4/tabdiff/tabdiff-n4-20260427_162220/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:534d66bcbfe543b68a1458e6092b8751c77654454950825db637fd0b00898e37
|
| 3 |
+
size 61230
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabdiff-n4-1595-20260427_163215.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6db4ea20d629106611686933bff4115357043921e26bb514fc971749b65cd56
|
| 3 |
+
size 1912374
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/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/n4/tabdiff/tabdiff-n4-20260427_162220/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:64105ceb501e743182455a2a658aae440560c2f5cdcbf89dab1f214e446bfdec
|
| 3 |
+
size 1728
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/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:8e57d6dd3b73f257a990787ea87dcc9d41c5003c6da35e922400c0dd74d8b0e9
|
| 3 |
+
size 12888
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/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:d35b0386116d734bcc1a83dd64aa413151f14bea40c68883553be25517281878
|
| 3 |
+
size 1720
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/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:beffcabaa7e2e2af0a027e2c1230e10f4333656d9b9ba6060a5bdea7de586b59
|
| 3 |
+
size 100928
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/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:dcab98fc06c725e8aa535e88d87e607ee33009ecf616256ca2b11154d423a252
|
| 3 |
+
size 804008
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/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:390f5bea9b96cacdb9cded42eba9552619164ebbb6c9c919b1bc4171b88c0355
|
| 3 |
+
size 100424
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:583ad162d753f0abd1fb0de2f85598790c1e7cc7563144be685788963437bc2b
|
| 3 |
+
size 22990
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cd54386bc1cf0510cc252be36ea55c975dd29907cbd0d546ed7dbb7f0c712af4
|
| 3 |
+
size 862440
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb2f65d44361d90bbfddde7650b5eaf6762ab5fbd1233874274bb326b50ebbcf
|
| 3 |
+
size 108940
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:280c473eff96782a48047faa0780550274958d584ea8856abd117d9b62195be8
|
| 3 |
+
size 109211
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:377eb332f6850e50ff92c47783dc619f4489ffdb2724c66ce3e01e129418efc8
|
| 3 |
+
size 928
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b61b31fdda1d46f1bf1c7be0825001a411290f2d487269d5f2719cbc96eeeaf7
|
| 3 |
+
size 6508
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/tabular_bundle/pipeline_ds/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:436e14ed31af485dc2c49ae28f679b5c6d9328ac0e9bb7d6a359f55fe48f5adb
|
| 3 |
+
size 924
|
5090-Success/n4/tabdiff/tabdiff-n4-20260427_162220/train_20260427_162220.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5956d3c315f66643a80c28f8e705ef8a31bf05881470149ef49faea7f830a7ab
|
| 3 |
+
size 319238
|