Add 5090 success run n2/tabdiff/tabdiff-n2-20260427_160011
Browse files- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/_tabdiff_gen.py +36 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/_tabdiff_train.py +21 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/input_snapshot.json +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/models_tabdiff/trained.pt +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/public_gate/normalized_schema_snapshot.json +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/public_gate/public_gate_report.json +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/public_gate/staged_input_manifest.json +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/runtime_result.json +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/staged/public/staged_features.json +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/staged/public/test.csv +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/staged/public/train.csv +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/staged/public/val.csv +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/staged/tabdiff/adapter_report.json +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/staged/tabdiff/adapter_transforms_applied.json +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/staged/tabdiff/model_input_manifest.json +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabdiff-n2-1202-20260427_160557.csv +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabdiff_train_meta.json +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/X_cat_test.npy +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/X_cat_train.npy +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/X_cat_val.npy +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/X_num_test.npy +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/X_num_train.npy +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/X_num_val.npy +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/info.json +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/real.csv +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/test.csv +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/val.csv +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/y_test.npy +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/y_train.npy +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/y_val.npy +3 -0
- 5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/train_20260427_160011.log +3 -0
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/_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/n2/tabdiff/tabdiff-n2-20260427_160011/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(1202)),
|
| 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/n2/tabdiff/tabdiff-n2-20260427_160011/tabdiff-n2-1202-20260427_160557.csv")
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/_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/n2/tabdiff/tabdiff-n2-20260427_160011/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/n2/tabdiff/tabdiff-n2-20260427_160011/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5a5a734efd36f25fad6c73fd323be6b66cafef30aa65d35d10c09a79b5713510
|
| 3 |
+
size 1343
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/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/n2/tabdiff/tabdiff-n2-20260427_160011/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc1fc64385203f3efba1f465940d7b364c828a5051ab8923f77a8b24a389f858
|
| 3 |
+
size 2987
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec3b23b2a5a72def0b741e2490bc58ec4a30dac9449a4bafde1734dd3dde95c2
|
| 3 |
+
size 927
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a96c268f76a3b9d25e9d8cd6af9ea88d35551cf5f89fe936ab96e69991e72c08
|
| 3 |
+
size 3768
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:530a04a0a9cbdca62f6b3d572b6fa5537808c6bbd132d5b841e714268f21ed1a
|
| 3 |
+
size 605
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c8a225c8d4f6e94f39e8c536f8ac2967890d3ce3d7d86ee9ac88166c88fb149
|
| 3 |
+
size 621
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b641c03347c5b451dd6fb120aecc9e3480dbac4929a14978b5dbeb846946c5d
|
| 3 |
+
size 6068
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f270db0e48d7595f0870d0491470f20545dcc0f3277388206c03b47ced9c294c
|
| 3 |
+
size 47624
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fc14d060a0f2177ff380c42c2fbf1dd0c5410f1b5904a2bd1f0e28e3ca71fe0d
|
| 3 |
+
size 6032
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:263ff90c177004968a80ed733399818c88e1b30a5cfc5154924e7ac98659e519
|
| 3 |
+
size 316
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/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/n2/tabdiff/tabdiff-n2-20260427_160011/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a0823f34880b4442101f42a3791892f81813b302a55b8993245560fb02b6eb28
|
| 3 |
+
size 3960
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabdiff-n2-1202-20260427_160557.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3185dad6516081bdaab1be7543511b7049fc4798cc7efdb8c952d72f777d929
|
| 3 |
+
size 56859
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/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/n2/tabdiff/tabdiff-n2-20260427_160011/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:cf4948088e66a7824ff076579372cb41b8a8db86d4089803a704fcc51a95e669
|
| 3 |
+
size 128
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/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:dc28a3f1c3275272a5da98eb1fc488caebc89724510c28d6b3d3d88895a4091b
|
| 3 |
+
size 128
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/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:d42e9e77f0c0c3640219e2266b31e7c65afe33f33fc3322e8e81ee4a3e032084
|
| 3 |
+
size 128
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/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:dfd704fd2d6901f4c0e113cf6909cfcf1c090ed9b8831c8a2f7c9a8ec9b475fa
|
| 3 |
+
size 3148
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/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:12464821ca33b640e6881f28297a24e1a58c1f6e95e1c649c918636df117b7a6
|
| 3 |
+
size 24168
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/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:cb7c7b8a2d65d2a4cbeb7c7e62bd71be02a26b7c30caf65c0c18a36e8edc20e8
|
| 3 |
+
size 3128
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d0a699931e42f38809e0d05aa9312164d72322d191839dcd04b9fa89fdd0720
|
| 3 |
+
size 1532
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:477cb1158c20c9c6c3f11f456474c29ffabb61692984a890493a9473e89eca2b
|
| 3 |
+
size 47624
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:478806ba155c87581c7e445e2e3fab861276dc9f9f8aeac47b63d20b27c71524
|
| 3 |
+
size 6068
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69821fa785ed9414687baacdebca8949e9edb1291522b70952c3196b9aa15953
|
| 3 |
+
size 6032
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f9ed66b7eee9392bfb84547620fbc49f60a01af4e17881eb2be22b0c8e2e62e
|
| 3 |
+
size 1336
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e67daafa79dc92da8a0c0f8bf3c92105cf782f7095fb28d1d6a3b4327f174b5
|
| 3 |
+
size 9744
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/tabular_bundle/pipeline_ds/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c52d829e5148065de9cee2a3dff4c30e6b6142eb9a77b06bb7edeeaab724287
|
| 3 |
+
size 1328
|
5090-Success/n2/tabdiff/tabdiff-n2-20260427_160011/train_20260427_160011.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8785026ac0e1e0cecc8bd7bdcaa19999b5a698c9b8f5a2be8aa3adc5279145d2
|
| 3 |
+
size 292188
|