TabQueryBench commited on
Commit
5e113cf
·
verified ·
1 Parent(s): 1cb1714

Add files using upload-large-folder tool

Browse files
Files changed (32) hide show
  1. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/_tabbyflow_gen.py +33 -0
  2. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/_tabbyflow_train.py +22 -0
  3. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/gen_20260429_033823.log +3 -0
  4. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/input_snapshot.json +3 -0
  5. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/models_tabbyflow/trained.pt +3 -0
  6. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/normalized_schema_snapshot.json +3 -0
  7. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/public_gate_report.json +3 -0
  8. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/staged_input_manifest.json +3 -0
  9. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/runtime_result.json +3 -0
  10. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/staged_features.json +3 -0
  11. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/test.csv +3 -0
  12. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/train.csv +3 -0
  13. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/val.csv +3 -0
  14. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/tabbyflow/adapter_report.json +3 -0
  15. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/tabbyflow/adapter_transforms_applied.json +3 -0
  16. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/tabbyflow/model_input_manifest.json +3 -0
  17. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabbyflow-n6-6400-20260429_033823.csv +3 -0
  18. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabbyflow_train_meta.json +3 -0
  19. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_cat_test.npy +3 -0
  20. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_cat_train.npy +3 -0
  21. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_cat_val.npy +3 -0
  22. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_num_test.npy +3 -0
  23. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_num_train.npy +3 -0
  24. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_num_val.npy +3 -0
  25. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/info.json +3 -0
  26. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/real.csv +3 -0
  27. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/test.csv +3 -0
  28. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/val.csv +3 -0
  29. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/y_test.npy +3 -0
  30. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/y_train.npy +3 -0
  31. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/y_val.npy +3 -0
  32. syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/train_20260429_032517.log +3 -0
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/_tabbyflow_gen.py ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ root = r"/workspace/ef-vfm"
4
+ name = r"pipeline_ds"
5
+ src = r"/work/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds"
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
+ subprocess.check_call([
16
+ sys.executable, "main.py",
17
+ "--dataname", name, "--mode", "test", "--gpu", "0",
18
+ "--no_wandb", "--exp_name", r"adapter_efvfm",
19
+ "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_ds/adapter_efvfm/model_500.pt",
20
+ "--num_samples_to_generate", str(int(6400)),
21
+ ])
22
+ base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm")
23
+ best = None
24
+ best_t = -1.0
25
+ for r, _, files in os.walk(base):
26
+ if "samples.csv" in files:
27
+ p = os.path.join(r, "samples.csv")
28
+ t = os.path.getmtime(p)
29
+ if t > best_t:
30
+ best_t, best = t, p
31
+ if not best:
32
+ raise SystemExit("tabbyflow: no samples.csv in " + base)
33
+ shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabbyflow-n6-6400-20260429_033823.csv")
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/_tabbyflow_train.py ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ root = r"/workspace/ef-vfm"
4
+ name = r"pipeline_ds"
5
+ src = r"/work/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds"
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
+ subprocess.check_call([
19
+ sys.executable, "main.py",
20
+ "--dataname", name, "--mode", "train", "--gpu", "0",
21
+ "--no_wandb", "--exp_name", r"adapter_efvfm",
22
+ ])
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/gen_20260429_033823.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8668fbb2d96bb1a0d16c45e143b4bb5874d8a91ff2eec7d22940ef10de48c79
3
+ size 3027
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54184360e59fa084ae3a3acb6bde16f49d70df8390c682cae0570dafc7573988
3
+ size 1348
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/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/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b240ee2cf62a2868bf54e3b4393eadd3d7751825bf4bb34743e85547f7cbcd3
3
+ size 7725
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:225732b90f81f74a3430523830af44cf151a7f15f2571a57ad83c2d55f982195
3
+ size 908
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:edd369fadfb97a324a38e21cce7ce3e570a784c1116bf415a8c702a53fa6a38b
3
+ size 8551
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7b602ee98cb8e690cd252d6132a35aa00b4c4cfefcc458710a6ff4bbca8bf79
3
+ size 631
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e2869694dd92d59628a62fdd1349d4dd69eb6608ed9b0fdeb4b0800b6334d81
3
+ size 1520
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5
3
+ size 39918
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b
3
+ size 316902
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f
3
+ size 39705
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/tabbyflow/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:802a5e67c20f99486fc3f4a181f4742d01b2e01a5a54625848f05160e4de40e6
3
+ size 327
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/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/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/tabbyflow/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec396904542177bd1ca532aa3bd69a324dba8aa75307b7ba7b2072cdee234e1b
3
+ size 8754
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabbyflow-n6-6400-20260429_033823.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba9fafad342eed2b7d016e43bc3a6375f4ab748127aa6c6cb46baa3f3e061ea9
3
+ size 716242
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabbyflow_train_meta.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bbe507388dc5629e9155e6ecf504bc121a9c227c10ff53532d15220fc65ee13
3
+ size 78
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_cat_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f36bc04fd4784bdd71cdf76db3bc10e00251759c48d501d1d7b5437ff785c82
3
+ size 128
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_cat_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f36bc04fd4784bdd71cdf76db3bc10e00251759c48d501d1d7b5437ff785c82
3
+ size 128
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_cat_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f36bc04fd4784bdd71cdf76db3bc10e00251759c48d501d1d7b5437ff785c82
3
+ size 128
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_num_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:393035466f24178ccee0946bd1ab6d8b7bc07677142b5798ad07b8d2e2b65962
3
+ size 409728
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_num_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:393035466f24178ccee0946bd1ab6d8b7bc07677142b5798ad07b8d2e2b65962
3
+ size 409728
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_num_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:393035466f24178ccee0946bd1ab6d8b7bc07677142b5798ad07b8d2e2b65962
3
+ size 409728
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa082b9d66343756ac706c2a7353bf8968a800e7947e353be3f28aade3ecd900
3
+ size 3195
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b
3
+ size 316902
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b
3
+ size 316902
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b
3
+ size 316902
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6bc1d3e281e647d8507df1305552f87513b9d8b7aad284e535e9fa2d0c18071b
3
+ size 51328
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6bc1d3e281e647d8507df1305552f87513b9d8b7aad284e535e9fa2d0c18071b
3
+ size 51328
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6bc1d3e281e647d8507df1305552f87513b9d8b7aad284e535e9fa2d0c18071b
3
+ size 51328
syntheticSuccess/n6/tabbyflow/tabbyflow-n6-20260429_032517/train_20260429_032517.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2abd54789951964148a9da786dbe67842a5a2a85236d669d6bd00a636cf9facf
3
+ size 373184