TabQueryBench commited on
Commit
56497b0
·
verified ·
1 Parent(s): 7b8f934

Add 5090 success run n2/tabbyflow/tabbyflow-n2-20260424_004716

Browse files
Files changed (32) hide show
  1. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/_tabbyflow_gen.py +33 -0
  2. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/_tabbyflow_train.py +22 -0
  3. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/input_snapshot.json +3 -0
  4. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/models_tabbyflow/trained.pt +3 -0
  5. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/public_gate/normalized_schema_snapshot.json +3 -0
  6. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/public_gate/public_gate_report.json +3 -0
  7. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/public_gate/staged_input_manifest.json +3 -0
  8. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/runtime_result.json +3 -0
  9. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/staged/public/staged_features.json +3 -0
  10. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/staged/public/test.csv +3 -0
  11. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/staged/public/train.csv +3 -0
  12. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/staged/public/val.csv +3 -0
  13. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/staged/tabbyflow/adapter_report.json +3 -0
  14. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/staged/tabbyflow/adapter_transforms_applied.json +3 -0
  15. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/staged/tabbyflow/model_input_manifest.json +3 -0
  16. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabbyflow-n2-1202-20260424_004754.csv +3 -0
  17. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabbyflow_resolved_ckpt.json +3 -0
  18. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabbyflow_train_meta.json +3 -0
  19. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabular_bundle/pipeline_ds/X_cat_test.npy +3 -0
  20. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabular_bundle/pipeline_ds/X_cat_train.npy +3 -0
  21. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabular_bundle/pipeline_ds/X_cat_val.npy +3 -0
  22. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabular_bundle/pipeline_ds/X_num_test.npy +3 -0
  23. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabular_bundle/pipeline_ds/X_num_train.npy +3 -0
  24. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabular_bundle/pipeline_ds/X_num_val.npy +3 -0
  25. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabular_bundle/pipeline_ds/info.json +3 -0
  26. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabular_bundle/pipeline_ds/real.csv +3 -0
  27. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabular_bundle/pipeline_ds/test.csv +3 -0
  28. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabular_bundle/pipeline_ds/val.csv +3 -0
  29. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabular_bundle/pipeline_ds/y_test.npy +3 -0
  30. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabular_bundle/pipeline_ds/y_train.npy +3 -0
  31. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabular_bundle/pipeline_ds/y_val.npy +3 -0
  32. 5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/train_20260424_004716.log +3 -0
5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/_tabbyflow_gen.py ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ root = r"/workspace/ef-vfm"
4
+ name = r"pipeline_ds"
5
+ src = r"/work/output-SpecializedModels/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabular_bundle/pipeline_ds"
6
+ dst_data = os.path.join(root, "data", name)
7
+ shutil.rmtree(dst_data, ignore_errors=True)
8
+ shutil.copytree(src, dst_data)
9
+ dst_syn = os.path.join(root, "synthetic", name)
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(root)
14
+ os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "")
15
+ subprocess.check_call([
16
+ sys.executable, "main.py",
17
+ "--dataname", name, "--mode", "test", "--gpu", "0",
18
+ "--no_wandb", "--exp_name", r"adapter_tabbyflow-n2-20260424_004716",
19
+ "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_ds/adapter_tabbyflow-n2-20260424_004716/model_500.pt",
20
+ "--num_samples_to_generate", str(int(1202)),
21
+ ])
22
+ base = os.path.join(root, "ef_vfm", "result", name, r"adapter_tabbyflow-n2-20260424_004716")
23
+ best = None
24
+ best_t = -1.0
25
+ for r, _, files in os.walk(base):
26
+ if "samples.csv" in files:
27
+ p = os.path.join(r, "samples.csv")
28
+ t = os.path.getmtime(p)
29
+ if t > best_t:
30
+ best_t, best = t, p
31
+ if not best:
32
+ raise SystemExit("tabbyflow: no samples.csv in " + base)
33
+ shutil.copy(best, r"/work/output-SpecializedModels/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabbyflow-n2-1202-20260424_004754.csv")
5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/_tabbyflow_train.py ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ root = r"/workspace/ef-vfm"
4
+ name = r"pipeline_ds"
5
+ src = r"/work/output-SpecializedModels/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabular_bundle/pipeline_ds"
6
+ os.makedirs(os.path.join(root, "data", name), exist_ok=True)
7
+ dst_data = os.path.join(root, "data", name)
8
+ dst_syn = os.path.join(root, "synthetic", name)
9
+ shutil.rmtree(dst_data, ignore_errors=True)
10
+ shutil.copytree(src, dst_data)
11
+ os.makedirs(dst_syn, exist_ok=True)
12
+ for fn in ("real.csv", "test.csv", "val.csv"):
13
+ shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn))
14
+ os.chdir(root)
15
+ os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "")
16
+ os.environ["EFVFM_SMOKE_STEPS"] = "500"
17
+ os.environ["EFVFM_ADAPTER_TRAIN"] = "1"
18
+ subprocess.check_call([
19
+ sys.executable, "main.py",
20
+ "--dataname", name, "--mode", "train", "--gpu", "0",
21
+ "--no_wandb", "--exp_name", r"adapter_tabbyflow-n2-20260424_004716",
22
+ ])
5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2744ae0603686de7670a49860e61e64b455733f99d54a32b81e4c166e59c9f8
3
+ size 1345
5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/models_tabbyflow/trained.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5
3
+ size 40
5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4af5767286f42d55076bb0cf9f2e5af5a67147eb8c9bd80a64e41b0b04d8f7a
3
+ size 3788
5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bc18d5ecff1f73100846ae485b1cb72780afda899b1e4169f9ff55c6262423d
3
+ size 621
5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/staged/tabbyflow/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:835fa246cbe2f8075e133bccd39ebde1ff7d2da70e3d89380004106559c494e3
3
+ size 322
5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/staged/tabbyflow/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/tabbyflow/tabbyflow-n2-20260424_004716/staged/tabbyflow/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7371f4d33840855d13a05740215840e5ed5d7c286006e2c9c45de31ba50c925e
3
+ size 3986
5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabbyflow-n2-1202-20260424_004754.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2ce99c63e0fb7c820ef05f72ab640ca241302f9539fde81b7e1d2332bd8b2c2
3
+ size 57268
5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabbyflow_resolved_ckpt.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37058db9648618a0fa508864b352cf0a22db70cc294fe7ddf86c8eddf190a388
3
+ size 354
5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/tabbyflow_train_meta.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1b020b51d9f1e3253b4619c1069429ed31b8bbe0f942b44111a554861fc7f66
3
+ size 259
5090-Success/n2/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/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/tabbyflow/tabbyflow-n2-20260424_004716/train_20260424_004716.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e9fcdde1cc1bb0e583e3494d53a29218b6c853ece330be989dfb049d7e67c75
3
+ size 205907