Add files using upload-large-folder tool
Browse files- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/_tabbyflow_gen.py +34 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/_tabbyflow_train.py +24 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/gen_20260505_010913.log +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/input_snapshot.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/models_tabbyflow/trained.pt +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/run_config.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/runtime_result.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/staged_features.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/test.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/train.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/val.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/tabbyflow/adapter_report.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/tabbyflow/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/tabbyflow/model_input_manifest.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabbyflow-n3-3918-20260505_010913.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabbyflow_train_meta.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_cat_test.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_cat_train.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_cat_val.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_num_test.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_num_train.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_num_val.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/info.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/real.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/test.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/val.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/y_test.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/y_train.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/y_val.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/train_20260505_010530.log +3 -0
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/_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_010529/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_010529/tabbyflow-n3-3918-20260505_010913.csv")
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/_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_010529/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"] = "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/n3/tabbyflow/tabbyflow-n3-20260505_010529/gen_20260505_010913.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a77e6b93f6ee957de7b9b0a82aa518b655746e4535a054d44b94cc2c109f1f6
|
| 3 |
+
size 3946
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/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_010529/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_010529/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_010529/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_010529/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:14991656c23ec441407e2fef6cd56a9dbb6119367a3c440674ce709cb1a24864
|
| 3 |
+
size 6524
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/run_config.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f52dcf9f52a7c382088a12b4b34b12f08aed0d1e451d955d0c02091dfeaf31ec
|
| 3 |
+
size 2105
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46bbc0653f92864f20d735c5553231c1dfd9851fc90825682f75dbcea88661d9
|
| 3 |
+
size 924
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/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_010529/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_010529/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_010529/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_010529/staged/tabbyflow/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1cee18c78ac5d72d9a59eac6bd9d95a72ba9c87f9b33aa052515207ef0f96a79
|
| 3 |
+
size 327
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/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_010529/staged/tabbyflow/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f46095e8bdbbb7a21fae9202b497526471d304e0ac0d43c9ca3f722d45187edb
|
| 3 |
+
size 6727
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabbyflow-n3-3918-20260505_010913.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0766c73087d6969b84e58df584a232c091aefea12dd7f0b115a43b9d8b01816b
|
| 3 |
+
size 339793
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabbyflow_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf96c4b4ed90ea22cd4d545094565b2c737ac158128f19ee34ef713217024e41
|
| 3 |
+
size 78
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010529/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_010529/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_010529/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_010529/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_010529/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_010529/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_010529/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_010529/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_010529/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_010529/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_010529/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_010529/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_010529/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_010529/train_20260505_010530.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6178fe20384998efb862094d3bbdd4756983946228da1cd1b2787733c9009307
|
| 3 |
+
size 119247
|