TabQueryBench commited on
Commit
67405ad
·
verified ·
1 Parent(s): c9168d6

Add files using upload-large-folder tool

Browse files
Files changed (33) hide show
  1. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/_tabbyflow_gen.py +34 -0
  2. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/_tabbyflow_train.py +24 -0
  3. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/gen_20260505_001419.log +3 -0
  4. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/input_snapshot.json +3 -0
  5. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/models_tabbyflow/trained.pt +3 -0
  6. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/normalized_schema_snapshot.json +3 -0
  7. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/public_gate_report.json +3 -0
  8. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/staged_input_manifest.json +3 -0
  9. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/run_config.json +3 -0
  10. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/runtime_result.json +3 -0
  11. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/staged_features.json +3 -0
  12. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/test.csv +3 -0
  13. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/train.csv +3 -0
  14. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/val.csv +3 -0
  15. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/adapter_report.json +3 -0
  16. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/adapter_transforms_applied.json +3 -0
  17. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/model_input_manifest.json +3 -0
  18. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabbyflow-c2-1382-20260505_001419.csv +3 -0
  19. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabbyflow_train_meta.json +3 -0
  20. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_cat_test.npy +3 -0
  21. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_cat_train.npy +3 -0
  22. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_cat_val.npy +3 -0
  23. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_num_test.npy +3 -0
  24. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_num_train.npy +3 -0
  25. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_num_val.npy +3 -0
  26. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/info.json +3 -0
  27. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/real.csv +3 -0
  28. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/test.csv +3 -0
  29. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/val.csv +3 -0
  30. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/y_test.npy +3 -0
  31. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/y_train.npy +3 -0
  32. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/y_val.npy +3 -0
  33. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/train_20260505_000602.log +3 -0
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/_tabbyflow_gen.py ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ root = r"/workspace/ef-vfm"
4
+ name = r"pipeline_c2"
5
+ src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2"
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
+ os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128")
16
+ subprocess.check_call([
17
+ sys.executable, "main.py",
18
+ "--dataname", name, "--mode", "test", "--gpu", "0",
19
+ "--no_wandb", "--exp_name", r"adapter_efvfm",
20
+ "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_c2/adapter_efvfm/model_500.pt",
21
+ "--num_samples_to_generate", str(int(1382)),
22
+ ])
23
+ base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm")
24
+ best = None
25
+ best_t = -1.0
26
+ for r, _, files in os.walk(base):
27
+ if "samples.csv" in files:
28
+ p = os.path.join(r, "samples.csv")
29
+ t = os.path.getmtime(p)
30
+ if t > best_t:
31
+ best_t, best = t, p
32
+ if not best:
33
+ raise SystemExit("tabbyflow: no samples.csv in " + base)
34
+ shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabbyflow-c2-1382-20260505_001419.csv")
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/_tabbyflow_train.py ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ root = r"/workspace/ef-vfm"
4
+ name = r"pipeline_c2"
5
+ src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2"
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
+ os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128")
19
+ os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512")
20
+ subprocess.check_call([
21
+ sys.executable, "main.py",
22
+ "--dataname", name, "--mode", "train", "--gpu", "0",
23
+ "--no_wandb", "--exp_name", r"adapter_efvfm",
24
+ ])
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/gen_20260505_001419.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38c44d8bcf44873b92c94c2e141c6a068fd4c9dfec03aa085aedd7485ee383b4
3
+ size 3414
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5567c73b2556a5e9e11c2e84a9edcb27afa62682e2a6376d84da7bc77a16229
3
+ size 1345
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/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
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a63ea2091eccf0145444f670415e7201dbdd052bc2ddabdc4241f6f16bdcf0a0
3
+ size 3153
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bdc8c14ffce6055ca726f7949b2900c4ba619b670f8fc63c61328c24e4c46c66
3
+ size 912
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e64c9ffe605183c059a708cb5c5e7c36c67e5bc23fa05e1476c7597f87996cf7
3
+ size 3979
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/run_config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69f95101f3302cde86990a21a1657fa9cd5aeb3e678615bbd55f17cd7173d998
3
+ size 2105
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e77c1436b761282be030a8fbe125989a252872d2be7e843a5dd78fe250a0110
3
+ size 924
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37511511f1d7cb0e004f9d7305c900644ebefe672c9a1a418c1f29b36786fabd
3
+ size 659
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73
3
+ size 5273
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd
3
+ size 41565
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01
3
+ size 5176
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efd338d6efefde07230b71f29ed0ff0e8156496a0ea09e28eddf1201f413437d
3
+ size 327
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/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
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e210ab74ab7d977e4eb9a33280ff865530091c2743cbc322c5d1eb3773a0e32
3
+ size 4182
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabbyflow-c2-1382-20260505_001419.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:368dbd683eedcbabc27d94bec182ff54cef14c9a1f541db5ca5319a8a983dc50
3
+ size 19397
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabbyflow_train_meta.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6301a40888c4e62efb00a28d6fb7bd7e28b76caf81c13778e5b0456e7c8494b9
3
+ size 78
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_cat_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542
3
+ size 66464
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_cat_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542
3
+ size 66464
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_cat_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542
3
+ size 66464
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_num_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec
3
+ size 128
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_num_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec
3
+ size 128
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_num_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec
3
+ size 128
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce786f02cdb5ee137c31ca8ebbf1874c8b283bde7da1bf93f3388d0c4a6d51f9
3
+ size 1417
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9
3
+ size 24215
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9
3
+ size 24215
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9
3
+ size 24215
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4
3
+ size 11184
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4
3
+ size 11184
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4
3
+ size 11184
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000602/train_20260505_000602.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:314783f3a7a99f1c025b95140a7bc2c140f7e8fe639deb9dc25a5cf2b40c01fb
3
+ size 284056