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

Add files using upload-large-folder tool

Browse files
Files changed (33) hide show
  1. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/_tabbyflow_gen.py +34 -0
  2. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/_tabbyflow_train.py +24 -0
  3. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/gen_20260505_002755.log +3 -0
  4. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/input_snapshot.json +3 -0
  5. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/models_tabbyflow/trained.pt +3 -0
  6. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/normalized_schema_snapshot.json +3 -0
  7. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/public_gate_report.json +3 -0
  8. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/staged_input_manifest.json +3 -0
  9. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/run_config.json +3 -0
  10. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/runtime_result.json +3 -0
  11. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/staged_features.json +3 -0
  12. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/test.csv +3 -0
  13. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/train.csv +3 -0
  14. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/val.csv +3 -0
  15. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/tabbyflow/adapter_report.json +3 -0
  16. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/tabbyflow/adapter_transforms_applied.json +3 -0
  17. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/tabbyflow/model_input_manifest.json +3 -0
  18. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabbyflow-c2-1382-20260505_002755.csv +3 -0
  19. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabbyflow_train_meta.json +3 -0
  20. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_cat_test.npy +3 -0
  21. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_cat_train.npy +3 -0
  22. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_cat_val.npy +3 -0
  23. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_num_test.npy +3 -0
  24. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_num_train.npy +3 -0
  25. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_num_val.npy +3 -0
  26. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/info.json +3 -0
  27. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/real.csv +3 -0
  28. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/test.csv +3 -0
  29. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/val.csv +3 -0
  30. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/y_test.npy +3 -0
  31. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/y_train.npy +3 -0
  32. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/y_val.npy +3 -0
  33. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/train_20260505_001451.log +3 -0
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/_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_001451/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_700.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_001451/tabbyflow-c2-1382-20260505_002755.csv")
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/_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_001451/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"] = "700"
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_001451/gen_20260505_002755.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:05ba45ce45592cb71a64741c3eed27546f78a286351c265f648edc2c81d4ca87
3
+ size 3415
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/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_001451/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_001451/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_001451/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_001451/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6426e33fab8988f5b2c0c94eebc31865400a04613afbb089f2eeb2ff8cfbd510
3
+ size 3979
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/run_config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d34708d3e3b26465baddfcde035ebf8c46e0f322a792a8ee178d64b8541255e
3
+ size 2105
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1fe127887d0dc72dc18ef9059b88a23c4a8484e91d8ca92cc10402e4f48d04a6
3
+ size 924
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/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_001451/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_001451/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_001451/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_001451/staged/tabbyflow/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d621eee32cdc42b1ecd16bfce9ac27acefc69b73cfcc9ca4f1a331453f63df76
3
+ size 327
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/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_001451/staged/tabbyflow/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e680458bbee23ada2c960d4670c3fedbb655a38943cb414eef6c11b0bd2383f8
3
+ size 4182
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabbyflow-c2-1382-20260505_002755.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f40f8ab297eb4afb6e68e8e2c5e8ce635008053c885143cad79238fc3361bf2
3
+ size 19397
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabbyflow_train_meta.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc8d6c3c5a7a6e37f9b80f2a5bf37282914cd79c10e638e2b560f91033c5f74f
3
+ size 78
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_001451/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_001451/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_001451/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_001451/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_001451/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_001451/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_001451/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_001451/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_001451/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_001451/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_001451/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_001451/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_001451/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_001451/train_20260505_001451.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f641d8956fe65f8dc173332fa731269c1df925e8c9bd76f177a46dae459d30c1
3
+ size 397667