Add files using upload-large-folder tool
Browse files- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/_tabbyflow_gen.py +34 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/_tabbyflow_train.py +24 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/gen_20260505_010451.log +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/input_snapshot.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/models_tabbyflow/trained.pt +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/run_config.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/runtime_result.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/staged_features.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/test.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/train.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/val.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/tabbyflow/adapter_report.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/tabbyflow/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/tabbyflow/model_input_manifest.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabbyflow-n3-3918-20260505_010451.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabbyflow_train_meta.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_cat_test.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_cat_train.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_cat_val.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_num_test.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_num_train.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_num_val.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/info.json +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/real.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/test.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/val.csv +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/y_test.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/y_train.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/y_val.npy +3 -0
- syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/train_20260505_010300.log +3 -0
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/_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_010259/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_010259/tabbyflow-n3-3918-20260505_010451.csv")
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/_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_010259/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"] = "100"
|
| 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_010259/gen_20260505_010451.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2207d6f293ecd0e612f9dd8f2b81fd12cf4cd60b1c0e2e76fee2985655f5c5a8
|
| 3 |
+
size 3945
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/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_010259/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_010259/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_010259/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_010259/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a19e6a8b865d9558d31c7dd363e9849acd27e838e3389a122184050da59458ab
|
| 3 |
+
size 6524
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/run_config.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4cba7c9f21eefc50b56fc915372556910dc84effaa7c5c7271d554320a9a6493
|
| 3 |
+
size 2105
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08fc6e7ea6a76ae9e22e0fc9d6b979d9df81bb78e0df640551c2d3df757cd314
|
| 3 |
+
size 924
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/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_010259/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_010259/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_010259/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_010259/staged/tabbyflow/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60ed3c7c1e8e2d09c085f376aac7fd79dddab5c93f6f774b6f0f3c9290bc2b79
|
| 3 |
+
size 327
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/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_010259/staged/tabbyflow/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10ebee37fa87966681e7828ce2559ea3b4e272e30fd8e40a543ce469481c1457
|
| 3 |
+
size 6727
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabbyflow-n3-3918-20260505_010451.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a3b4b268d195cc5709e7077b05971e519c7c4c08a023cf80de526e1b1f163b56
|
| 3 |
+
size 339904
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabbyflow_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b9b4db0421099abc5604e8eda6be4dfce0294e3c22856e7ad0d4c838ec5af5b4
|
| 3 |
+
size 78
|
syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260505_010259/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_010259/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_010259/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_010259/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_010259/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_010259/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_010259/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_010259/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_010259/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_010259/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_010259/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_010259/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_010259/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_010259/train_20260505_010300.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a062f7da2c99345dfc9ebbef4d662b94cd6de50910c7bf38e9098db09f1560d
|
| 3 |
+
size 62704
|