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

Add files using upload-large-folder tool

Browse files
Files changed (33) hide show
  1. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/_tabbyflow_gen.py +34 -0
  2. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/_tabbyflow_train.py +24 -0
  3. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/gen_20260505_000530.log +3 -0
  4. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/input_snapshot.json +3 -0
  5. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/models_tabbyflow/trained.pt +3 -0
  6. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/normalized_schema_snapshot.json +3 -0
  7. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/public_gate_report.json +3 -0
  8. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/staged_input_manifest.json +3 -0
  9. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/run_config.json +3 -0
  10. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/runtime_result.json +3 -0
  11. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/staged_features.json +3 -0
  12. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/test.csv +3 -0
  13. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/train.csv +3 -0
  14. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/val.csv +3 -0
  15. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/tabbyflow/adapter_report.json +3 -0
  16. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/tabbyflow/adapter_transforms_applied.json +3 -0
  17. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/tabbyflow/model_input_manifest.json +3 -0
  18. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabbyflow-c2-1382-20260505_000530.csv +3 -0
  19. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabbyflow_train_meta.json +3 -0
  20. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_cat_test.npy +3 -0
  21. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_cat_train.npy +3 -0
  22. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_cat_val.npy +3 -0
  23. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_num_test.npy +3 -0
  24. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_num_train.npy +3 -0
  25. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_num_val.npy +3 -0
  26. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/info.json +3 -0
  27. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/real.csv +3 -0
  28. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/test.csv +3 -0
  29. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/val.csv +3 -0
  30. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/y_test.npy +3 -0
  31. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/y_train.npy +3 -0
  32. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/y_val.npy +3 -0
  33. syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/train_20260505_000025.log +3 -0
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/_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_000025/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_000025/tabbyflow-c2-1382-20260505_000530.csv")
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/_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_000025/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"] = "300"
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_000025/gen_20260505_000530.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3ca6eb4fc7317dca32459c01f9ad1f442316a4fe41ee5cce0307d7e4d72d1ba
3
+ size 3414
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/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_000025/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_000025/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_000025/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_000025/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52300b99683b99c9dea9507999ff18d03fba58bf2704768bade48f01751e7142
3
+ size 3979
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/run_config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d28dcb4d56756992e7e29c6bc10b02e1bd02d3518f204afb330268c068a5309
3
+ size 2104
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d85aa5326e7495993dd0b0cfb4ede6e74caa327ace2f5e6864a73fed1eefb462
3
+ size 923
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/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_000025/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_000025/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_000025/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_000025/staged/tabbyflow/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2b61280989032498e8025dc45b18682893ba842f179d2ed81a7d7f70fa630cb
3
+ size 327
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/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_000025/staged/tabbyflow/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8de2ec53fb1037ca6b02ee4fe34cc73574769d650853fe2edda72912004a5732
3
+ size 4182
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabbyflow-c2-1382-20260505_000530.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a09c1d46d3056ea1338f5545ba8263f88f34ac98608ab0177dc0d1d7098880a2
3
+ size 19397
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabbyflow_train_meta.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0e55c96e022876d3828e051925dfb4dff9cd875fa7fcb3d7d7ceefeee931636
3
+ size 78
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260505_000025/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_000025/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_000025/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_000025/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_000025/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_000025/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_000025/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_000025/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_000025/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_000025/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_000025/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_000025/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_000025/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_000025/train_20260505_000025.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b42c72de67445a99cc01e8429e29a836c3572ad209234a2cb61d85c4878b50a9
3
+ size 172674