Add remaining 5090 success run n6/tabdiff/tabdiff-n6-20260427_170809
Browse files- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/_tabdiff_gen.py +36 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/_tabdiff_train.py +21 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/input_snapshot.json +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/models_tabdiff/trained.pt +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/public_gate/normalized_schema_snapshot.json +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/public_gate/public_gate_report.json +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/public_gate/staged_input_manifest.json +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/runtime_result.json +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/staged/public/staged_features.json +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/staged/public/test.csv +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/staged/public/train.csv +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/staged/public/val.csv +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/staged/tabdiff/adapter_report.json +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/staged/tabdiff/adapter_transforms_applied.json +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/staged/tabdiff/model_input_manifest.json +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabdiff-n6-6400-20260427_171425.csv +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabdiff_train_meta.json +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/X_cat_test.npy +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/X_cat_train.npy +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/X_cat_val.npy +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/X_num_test.npy +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/X_num_train.npy +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/X_num_val.npy +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/info.json +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/real.csv +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/test.csv +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/val.csv +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/y_test.npy +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/y_train.npy +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/y_val.npy +3 -0
- 5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/train_20260427_170809.log +3 -0
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/_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/n6/tabdiff/tabdiff-n6-20260427_170809/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(6400)),
|
| 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/n6/tabdiff/tabdiff-n6-20260427_170809/tabdiff-n6-6400-20260427_171425.csv")
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/_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/n6/tabdiff/tabdiff-n6-20260427_170809/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/n6/tabdiff/tabdiff-n6-20260427_170809/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a7ce80bc99bdababcf0ce4413c35e080330373250cbc94aa2c3f022419c1723
|
| 3 |
+
size 1346
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/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/n6/tabdiff/tabdiff-n6-20260427_170809/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b240ee2cf62a2868bf54e3b4393eadd3d7751825bf4bb34743e85547f7cbcd3
|
| 3 |
+
size 7725
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c34e3ea923f7c8932850719a37b5f5774c68fc80501b8fe2312f2a1e30ed09e6
|
| 3 |
+
size 908
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5557c89fbdf54306b6d1cf2871ad1af28c73aeedbe7468448ff3c09c0740a61a
|
| 3 |
+
size 8506
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:34f03554006a393717bb364ab8bcb6329f8ba2873264061531faf12d01fd0f99
|
| 3 |
+
size 605
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e2869694dd92d59628a62fdd1349d4dd69eb6608ed9b0fdeb4b0800b6334d81
|
| 3 |
+
size 1520
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5
|
| 3 |
+
size 39918
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b
|
| 3 |
+
size 316902
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f
|
| 3 |
+
size 39705
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:58c6a7f6c04b529ca3069702f51d6d5a7dbc0661b8b7d75fcb42737ce31b961a
|
| 3 |
+
size 316
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/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/n6/tabdiff/tabdiff-n6-20260427_170809/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2930fe824674ebd99449c4f51c2ad560fbd0b4c1fc4f8fd0cb756b7cca75a254
|
| 3 |
+
size 8698
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabdiff-n6-6400-20260427_171425.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03bc2f53c5098f72c368adfeac24a7930aec26d5071d7aa1533243012f54b510
|
| 3 |
+
size 744473
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/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/n6/tabdiff/tabdiff-n6-20260427_170809/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:4951e852885baf08e84297cae58e4c48b42258e284b3ad9e6b7d9b5d0f8332f5
|
| 3 |
+
size 128
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/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:1f36bc04fd4784bdd71cdf76db3bc10e00251759c48d501d1d7b5437ff785c82
|
| 3 |
+
size 128
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/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:4951e852885baf08e84297cae58e4c48b42258e284b3ad9e6b7d9b5d0f8332f5
|
| 3 |
+
size 128
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/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:9eab90bae74e43019484aad1c20a49a193c24617a02d280145f244b438b25672
|
| 3 |
+
size 51328
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/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:393035466f24178ccee0946bd1ab6d8b7bc07677142b5798ad07b8d2e2b65962
|
| 3 |
+
size 409728
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/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:4661fb6b5ee9a958ed78a0ee07482da68b9c75aa53b5b0308f10bff861c33405
|
| 3 |
+
size 51328
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ecd473f3ee40332c70f84cdca0228b0b9fdb0b07c7a01dbcbe8c570e2ebb18b
|
| 3 |
+
size 3094
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b
|
| 3 |
+
size 316902
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5
|
| 3 |
+
size 39918
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f
|
| 3 |
+
size 39705
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:033db5328408416ad69417a0308d68cb40650982599f6f2e8028dda49a123c86
|
| 3 |
+
size 6528
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6bc1d3e281e647d8507df1305552f87513b9d8b7aad284e535e9fa2d0c18071b
|
| 3 |
+
size 51328
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/tabular_bundle/pipeline_ds/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:37008cd909bf480e62c53c242969398b8ccfe51a107c41ab26025395bdada3fd
|
| 3 |
+
size 6528
|
5090-Success/n6/tabdiff/tabdiff-n6-20260427_170809/train_20260427_170809.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7af468d775d1978e48b35dd9f21fc6726c8117b880c4a88126e1cf2aaaa7cf3e
|
| 3 |
+
size 368663
|