Add files using upload-large-folder tool
Browse files- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/_tabbyflow_gen.py +34 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/_tabbyflow_train.py +24 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/gen_20260504_235957.log +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/input_snapshot.json +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/models_tabbyflow/trained.pt +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/run_config.json +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/runtime_result.json +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/staged_features.json +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/test.csv +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/train.csv +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/val.csv +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/tabbyflow/adapter_report.json +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/tabbyflow/adapter_transforms_applied.json +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/tabbyflow/model_input_manifest.json +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabbyflow-c2-1382-20260504_235957.csv +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabbyflow_train_meta.json +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_cat_test.npy +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_cat_train.npy +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_cat_val.npy +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_num_test.npy +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_num_train.npy +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_num_val.npy +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/info.json +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/real.csv +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/test.csv +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/val.csv +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/y_test.npy +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/y_train.npy +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/y_val.npy +3 -0
- syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/train_20260504_235618.log +3 -0
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/_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-20260504_235618/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-20260504_235618/tabbyflow-c2-1382-20260504_235957.csv")
|
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/_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-20260504_235618/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"] = "200"
|
| 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-20260504_235618/gen_20260504_235957.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a718b5b364468e64a6997ea6ef81c859ebd9a0a4d2659bc8657888de3e24e16
|
| 3 |
+
size 3415
|
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/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-20260504_235618/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-20260504_235618/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-20260504_235618/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-20260504_235618/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5dc55e76c9103b6e8eb4acfe5158ee6cca7568892bd5be270f379d397fefc1a
|
| 3 |
+
size 3979
|
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/run_config.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78b2e6ebfcbb4045a74b23f7f6e63783065defcac3b754d323627f221e658171
|
| 3 |
+
size 2103
|
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f9befe7ce5d500b73af38b673411297b070a537fd73983735338a975c4984b58
|
| 3 |
+
size 924
|
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/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-20260504_235618/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-20260504_235618/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-20260504_235618/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-20260504_235618/staged/tabbyflow/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:35583080a8540d4b40f62172a3dabf84fc075e2ae23dd320fd54dcb0e7267dcb
|
| 3 |
+
size 327
|
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/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-20260504_235618/staged/tabbyflow/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:74abcf3908ffd78f88ccee2c22637746e5420bb57ef3a19ae9a04eb40bc9f98f
|
| 3 |
+
size 4182
|
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabbyflow-c2-1382-20260504_235957.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0718fa9bac5f4bc06aa4d78080565ee4bb469db3ae3c93fbb94dc2e3c12269b2
|
| 3 |
+
size 19397
|
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabbyflow_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5fd406c68503dd95a03bfa2c273db283d53cbf4b531dbe46939163d7e604d3de
|
| 3 |
+
size 78
|
syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260504_235618/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-20260504_235618/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-20260504_235618/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-20260504_235618/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-20260504_235618/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-20260504_235618/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-20260504_235618/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-20260504_235618/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-20260504_235618/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-20260504_235618/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-20260504_235618/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-20260504_235618/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-20260504_235618/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-20260504_235618/train_20260504_235618.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2bc0013d6e317a6dd45c5d97baaca5e940d1b2e504644aa3fa44865d25ea1ecc
|
| 3 |
+
size 116974
|