TabQueryBench commited on
Commit
96da469
·
verified ·
1 Parent(s): dc7b24c

Add files using upload-large-folder tool

Browse files
Files changed (33) hide show
  1. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/_tabbyflow_gen.py +34 -0
  2. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/_tabbyflow_train.py +24 -0
  3. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/gen_20260505_010225.log +3 -0
  4. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/input_snapshot.json +3 -0
  5. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/models_tabbyflow/trained.pt +3 -0
  6. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/normalized_schema_snapshot.json +3 -0
  7. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/public_gate_report.json +3 -0
  8. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/staged_input_manifest.json +3 -0
  9. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/run_config.json +3 -0
  10. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/runtime_result.json +3 -0
  11. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/staged_features.json +3 -0
  12. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/test.csv +3 -0
  13. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/train.csv +3 -0
  14. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/val.csv +3 -0
  15. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/adapter_report.json +3 -0
  16. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/adapter_transforms_applied.json +3 -0
  17. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/model_input_manifest.json +3 -0
  18. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabbyflow-m4-2217-20260505_010225.csv +3 -0
  19. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabbyflow_train_meta.json +3 -0
  20. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_cat_test.npy +3 -0
  21. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_cat_train.npy +3 -0
  22. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_cat_val.npy +3 -0
  23. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_num_test.npy +3 -0
  24. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_num_train.npy +3 -0
  25. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_num_val.npy +3 -0
  26. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/info.json +3 -0
  27. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/real.csv +3 -0
  28. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/test.csv +3 -0
  29. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/val.csv +3 -0
  30. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/y_test.npy +3 -0
  31. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/y_train.npy +3 -0
  32. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/y_val.npy +3 -0
  33. syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/train_20260505_005055.log +3 -0
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/_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_m4"
5
+ src = r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4"
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_m4/adapter_efvfm/model_700.pt",
21
+ "--num_samples_to_generate", str(int(2217)),
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/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabbyflow-m4-2217-20260505_010225.csv")
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/_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_m4"
5
+ src = r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4"
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/m4/tabbyflow/tabbyflow-m4-20260505_005055/gen_20260505_010225.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56844fc5cc51695c0d9b3fb2374ed0c7477d0ff694ab291546050190ed5e305c
3
+ size 3571
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b251471401f2bec0d92e9531ea31b64ea47f50dffdb72a8f84a656966bc30df9
3
+ size 1347
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/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/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:147188e89a0542cf3b022c634e88c2d00f2d4ee70b9581034df8ccb87204eee8
3
+ size 3234
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:515294ac3f64bc7db5c9724dba42d4156b6a574241ce8cc363ba379c85326f47
3
+ size 910
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12c8803eccdcbe35da9c25b417259ca55d255e0576b040b9b10226e530a55d90
3
+ size 4060
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/run_config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bdfa3c3569239a25ce1aa0c3ce34e627aac54c047ab264ce9451f68e2b4a7ef6
3
+ size 2103
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2d8195bd0bc2bbca743f3f51851a97b01e245a3559229677dd714c52e75b31d
3
+ size 924
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1207bcd03560fd5e534c9b55e7ef32d0bf5bf1ccb7c37782749c850b76b062ef
3
+ size 644
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea
3
+ size 11298
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837
3
+ size 90069
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7
3
+ size 11218
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:debfa78f4191167f2eec749cb084703981b9da1ccec4816327dc0d0e7885bbeb
3
+ size 327
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/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/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0982a4a020d46907633c063d356cb2b398b91e73e5b4f5020380b92b3f33c59a
3
+ size 4263
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabbyflow-m4-2217-20260505_010225.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fbecd40649c3039a7e21ad650daff7dd636af25b263983599c1b1c21246c320d
3
+ size 83958
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabbyflow_train_meta.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1de58bb3d6be8a3c2e297ba64243a70e48aa8ca8cc38254d64ec0ab51bd1cc5a
3
+ size 78
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_cat_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07
3
+ size 53336
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_cat_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07
3
+ size 53336
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_cat_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07
3
+ size 53336
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_num_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8
3
+ size 26732
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_num_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8
3
+ size 26732
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_num_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8
3
+ size 26732
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b17b4958e4ac8c5f64d1854d7be75345f599539d639ed4a2c43ac0bb63a1f11a
3
+ size 1557
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa
3
+ size 60773
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa
3
+ size 60773
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa
3
+ size 60773
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2
3
+ size 8996
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2
3
+ size 8996
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2
3
+ size 8996
syntheticSuccess/m4/tabbyflow/tabbyflow-m4-20260505_005055/train_20260505_005055.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3a020b2a3296dbf9970d8b341fe78f69935468eac9751b2ef398b16ca2a54d5
3
+ size 404145