TabQueryBench commited on
Commit
f61c765
·
verified ·
1 Parent(s): f8859c3

Add files using upload-large-folder tool

Browse files
Files changed (33) hide show
  1. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/_tabbyflow_gen.py +34 -0
  2. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/_tabbyflow_train.py +24 -0
  3. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/gen_20260505_013725.log +3 -0
  4. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/input_snapshot.json +3 -0
  5. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/models_tabbyflow/trained.pt +3 -0
  6. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/normalized_schema_snapshot.json +3 -0
  7. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/public_gate_report.json +3 -0
  8. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/staged_input_manifest.json +3 -0
  9. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/run_config.json +3 -0
  10. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/runtime_result.json +3 -0
  11. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/staged_features.json +3 -0
  12. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/test.csv +3 -0
  13. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/train.csv +3 -0
  14. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/val.csv +3 -0
  15. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/adapter_report.json +3 -0
  16. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/adapter_transforms_applied.json +3 -0
  17. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/model_input_manifest.json +3 -0
  18. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabbyflow-n3-3918-20260505_013725.csv +3 -0
  19. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabbyflow_train_meta.json +3 -0
  20. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_cat_test.npy +3 -0
  21. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_cat_train.npy +3 -0
  22. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_cat_val.npy +3 -0
  23. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_num_test.npy +3 -0
  24. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_num_train.npy +3 -0
  25. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_num_val.npy +3 -0
  26. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/info.json +3 -0
  27. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/real.csv +3 -0
  28. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/test.csv +3 -0
  29. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/val.csv +3 -0
  30. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/y_test.npy +3 -0
  31. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/y_train.npy +3 -0
  32. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/y_val.npy +3 -0
  33. syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/train_20260505_012543.log +3 -0
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/_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_n3"
5
+ src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3"
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_n3/adapter_efvfm/model_700.pt",
21
+ "--num_samples_to_generate", str(int(3918)),
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/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabbyflow-n3-3918-20260505_013725.csv")
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/_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_n3"
5
+ src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3"
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/n3/tabbyflow/tabbyflow-n3-20260505_012543/gen_20260505_013725.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1114ff59f09135c24f897b3fe79adb3a29a92082b60689c7a32c11ea6a1c34df
3
+ size 3945
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b1b0b4fdc6f3c433735efd2ae4bc1a4dc1fd2a44e4999c82f3f7dd669977cc1
3
+ size 1348
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/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/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0d6ea2b78489a6f1d2a4546e12404214ae439c9439a9922bea713ec72b4b12a
3
+ size 5698
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0ef01a386dd32e531a00a2fe40df2aeed2cbeace8b0beab6956a3accd027a93
3
+ size 914
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66d75efecb74f3759c490100be23408efe31dfcf4452dc75ccfef5af430c3b63
3
+ size 6524
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/run_config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:628ab598625b4d6cdfa85f52606f15d26a96a0e2517fce374f62119d96b41343
3
+ size 2107
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e932e79bf2f60a0c5fc28ff560cb501ecf649db26b516704a784f150ab7f7b5e
3
+ size 923
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:554e7aee4c0517bcf9d7810fc4a5563b6ed24d721bc267fee16aa28edd889143
3
+ size 1179
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b
3
+ size 28944
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9
3
+ size 229945
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6
3
+ size 28791
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75b9f7993f0f0252ed6c15aa6af7b1768c915702aebabadfda79ab51742e8de5
3
+ size 327
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/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/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc3e68d693040f671b9a9e3ee513e0f91b99961e0a7a1e09da43915ce8b8605f
3
+ size 6727
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabbyflow-n3-3918-20260505_013725.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92c44e567d7cf629381476850703484b8817a845d546b8b11d289d602b7d7dd5
3
+ size 340740
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabbyflow_train_meta.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83df69c2a24e5ff5f3d772fef787c0e5f6822287305ff704ae14f00dc082b459
3
+ size 78
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_cat_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7
3
+ size 128
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_cat_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7
3
+ size 128
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_cat_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7
3
+ size 128
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_num_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a
3
+ size 172520
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_num_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a
3
+ size 172520
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_num_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a
3
+ size 172520
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54d3ab685b584d0191213f19add3d9670717c82013d503a6b4ce5b0176762e31
3
+ size 2608
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023
3
+ size 229825
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023
3
+ size 229825
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023
3
+ size 229825
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1
3
+ size 31472
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1
3
+ size 31472
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1
3
+ size 31472
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_012543/train_20260505_012543.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:655d2ba9d46b8601a0ca8d709855e6e01fbb3780e0fbdd89d064ee387d169ac6
3
+ size 405514