Add files using upload-large-folder tool
Browse files- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/_tabbyflow_gen.py +34 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/_tabbyflow_train.py +24 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/gen_20260505_012459.log +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/input_snapshot.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/models_tabbyflow/trained.pt +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/run_config.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/runtime_result.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/staged_features.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/test.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/train.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/val.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/tabbyflow/adapter_report.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/tabbyflow/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/tabbyflow/model_input_manifest.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabbyflow-n3-3918-20260505_012459.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabbyflow_train_meta.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_cat_test.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_cat_train.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_cat_val.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_num_test.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_num_train.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_num_val.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/info.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/real.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/test.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/val.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/y_test.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/y_train.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/y_val.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/train_20260505_011539.log +3 -0
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/_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_011539/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_500.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_011539/tabbyflow-n3-3918-20260505_012459.csv")
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/_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_011539/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"] = "500"
|
| 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_011539/gen_20260505_012459.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1cf39a59a5f71e31e1393a0734f603f732945f3e520bf6c0039dd5dd8e983e5b
|
| 3 |
+
size 3945
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/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_011539/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_011539/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_011539/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_011539/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:363afa5a46aa9a5648ef12e6e6ea0a6a7088a0e9ece4abcae51cc1e64c997d8d
|
| 3 |
+
size 6524
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/run_config.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8282fa026e34d56064108bf39febb56bba4bae9c4958b2e9e4cbf1a7bbcb3be
|
| 3 |
+
size 2107
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b96a2a1b4746f77cd149ed56efc849ba805f0e97bc832eff13dfa6a1bf1e28aa
|
| 3 |
+
size 924
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/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_011539/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_011539/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_011539/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_011539/staged/tabbyflow/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2eb88df41542ed98c756574e3ba8c77cdbf6fe24d6468082dcad5f2057090d4c
|
| 3 |
+
size 327
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/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_011539/staged/tabbyflow/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0a89bdbd28d1af73cc671c8a25ed279519585172bf8973d0863fb78925303803
|
| 3 |
+
size 6727
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabbyflow-n3-3918-20260505_012459.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:101fc9b49b907e4bd2091e2d907c358fad3848a755c858eca63fc40bcc7fd6d9
|
| 3 |
+
size 340170
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabbyflow_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f3b03a1486a821d2879e8ebac3976467d7ed20ac80434a3bf4a29cc44ba8ae1
|
| 3 |
+
size 78
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_011539/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_011539/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_011539/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_011539/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_011539/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_011539/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_011539/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_011539/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_011539/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_011539/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_011539/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_011539/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_011539/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_011539/train_20260505_011539.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f47184a76cf9f55735dffc81b2027701ae0068d673cbc7e1d548b19bc51d37f
|
| 3 |
+
size 290236
|