TabQueryBench commited on
Commit
eb12a2c
·
verified ·
1 Parent(s): 6408784

Add files using upload-large-folder tool

Browse files
Files changed (32) hide show
  1. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/_tabbyflow_gen.py +33 -0
  2. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/_tabbyflow_train.py +22 -0
  3. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/gen_20260429_041920.log +3 -0
  4. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/input_snapshot.json +3 -0
  5. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/models_tabbyflow/trained.pt +3 -0
  6. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/normalized_schema_snapshot.json +3 -0
  7. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/public_gate_report.json +3 -0
  8. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/staged_input_manifest.json +3 -0
  9. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/runtime_result.json +3 -0
  10. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/staged_features.json +3 -0
  11. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/test.csv +3 -0
  12. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/train.csv +3 -0
  13. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/val.csv +3 -0
  14. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/tabbyflow/adapter_report.json +3 -0
  15. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/tabbyflow/adapter_transforms_applied.json +3 -0
  16. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/tabbyflow/model_input_manifest.json +3 -0
  17. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabbyflow-c7-10368-20260429_041920.csv +3 -0
  18. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabbyflow_train_meta.json +3 -0
  19. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_cat_test.npy +3 -0
  20. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_cat_train.npy +3 -0
  21. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_cat_val.npy +3 -0
  22. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_num_test.npy +3 -0
  23. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_num_train.npy +3 -0
  24. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_num_val.npy +3 -0
  25. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/info.json +3 -0
  26. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/real.csv +3 -0
  27. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/test.csv +3 -0
  28. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/val.csv +3 -0
  29. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/y_test.npy +3 -0
  30. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/y_train.npy +3 -0
  31. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/y_val.npy +3 -0
  32. syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/train_20260429_041030.log +3 -0
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/_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_c7"
5
+ src = r"/work/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7"
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_c7/adapter_efvfm/model_500.pt",
20
+ "--num_samples_to_generate", str(int(10368)),
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/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabbyflow-c7-10368-20260429_041920.csv")
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/_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_c7"
5
+ src = r"/work/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7"
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/c7/tabbyflow/tabbyflow-c7-20260429_041029/gen_20260429_041920.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e97cf73bc23ea58d1eb7881bc42f26521eef278a43d7d496799711f96af4b52
3
+ size 3177
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00b3b16650b72169130e0fab5b0b8ad91dc732909683425eb3a3be0da4ba89bc
3
+ size 1350
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/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/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5dd68094a5d8fc40d291695c5aa12bc01cfe8d3a62848b4bcfd82c2e88ed19c9
3
+ size 4177
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f08566bcd78a9005059bf27f5f9ecf74954e2be289410d19100e900577f651ea
3
+ size 912
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa988e89c9d891e2fc3bbc01d902bae49e0e06aec41b1439f22070f53820829f
3
+ size 5003
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c7ceaa59f74076f8bdb5ff19864384bb4b9ff84346a7d385e826ea4fc674ddb
3
+ size 632
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07596ae0689482090a05749dba332eca061d863cde5d8bf7a83e8c2c92abb330
3
+ size 851
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058
3
+ size 106030
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a
3
+ size 847349
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780
3
+ size 106192
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/tabbyflow/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64c5b255d0b9d15971a7271235924005ce48720dd2d470e306d92ecebd6fdcc0
3
+ size 327
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/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/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/tabbyflow/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b355ab0ebb9eef96ca39c629981d9b1f49fbff2d131056b56f7a795018c1c74
3
+ size 5206
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabbyflow-c7-10368-20260429_041920.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55c104a155bda80f95e2fde4bdab8bb395abd17b90d9e8623f6f15fd1d9d72ce
3
+ size 186691
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabbyflow_train_meta.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8634456c3ebad50249ebc042dc88e25cb845fd20a78e305866e42534afb9183a
3
+ size 78
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_cat_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe170020f0e97be3d763c4207ff95efc4e981264660ef6397fcf5f6e62d31eec
3
+ size 663680
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_cat_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe170020f0e97be3d763c4207ff95efc4e981264660ef6397fcf5f6e62d31eec
3
+ size 663680
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_cat_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe170020f0e97be3d763c4207ff95efc4e981264660ef6397fcf5f6e62d31eec
3
+ size 663680
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_num_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba6482dc6705ea0ac5fc0355391800cb0937fe4c3221baa21bc1f47beec8c260
3
+ size 128
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_num_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba6482dc6705ea0ac5fc0355391800cb0937fe4c3221baa21bc1f47beec8c260
3
+ size 128
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_num_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba6482dc6705ea0ac5fc0355391800cb0937fe4c3221baa21bc1f47beec8c260
3
+ size 128
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf8e6d04301a95b045dd40f724647298b6bfd3566896816392a3f7add51b0e40
3
+ size 1665
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ba16ecd55573b2bdc268f8a19464703e0109546f5951689c6d9a99eb5c6cc09
3
+ size 269700
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ba16ecd55573b2bdc268f8a19464703e0109546f5951689c6d9a99eb5c6cc09
3
+ size 269700
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ba16ecd55573b2bdc268f8a19464703e0109546f5951689c6d9a99eb5c6cc09
3
+ size 269700
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99ac41d294af4eecd6e8a45863077f58b49456e9d0e055344706824cbb034964
3
+ size 83072
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99ac41d294af4eecd6e8a45863077f58b49456e9d0e055344706824cbb034964
3
+ size 83072
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99ac41d294af4eecd6e8a45863077f58b49456e9d0e055344706824cbb034964
3
+ size 83072
syntheticSuccess/c7/tabbyflow/tabbyflow-c7-20260429_041029/train_20260429_041030.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc98d78a1665a8ecd34fdf05631ab0fb93fd7e961a785cba1ba557d521b9a74f
3
+ size 452556