Copy 5090 success runs into syntheticSuccess (batch 10)
Browse files- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/_tabbyflow_gen.py +33 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/_tabbyflow_train.py +22 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/input_snapshot.json +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/models_tabbyflow/trained.pt +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/runtime_result.json +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/staged/public/staged_features.json +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/staged/public/test.csv +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/staged/public/train.csv +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/staged/public/val.csv +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/staged/tabbyflow/adapter_report.json +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/staged/tabbyflow/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/staged/tabbyflow/model_input_manifest.json +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabbyflow-n9-8794-20260424_012846.csv +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabbyflow_resolved_ckpt.json +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabbyflow_train_meta.json +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/X_cat_test.npy +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/X_cat_train.npy +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/X_cat_val.npy +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/X_num_test.npy +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/X_num_train.npy +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/X_num_val.npy +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/info.json +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/real.csv +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/test.csv +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/val.csv +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/y_test.npy +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/y_train.npy +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/y_val.npy +3 -0
- syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/train_20260424_012704.log +3 -0
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/_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_ds"
|
| 5 |
+
src = r"/work/output-SpecializedModels/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds"
|
| 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_tabbyflow-n9-20260424_012703",
|
| 19 |
+
"--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_ds/adapter_tabbyflow-n9-20260424_012703/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(8794)),
|
| 21 |
+
])
|
| 22 |
+
base = os.path.join(root, "ef_vfm", "result", name, r"adapter_tabbyflow-n9-20260424_012703")
|
| 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-SpecializedModels/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabbyflow-n9-8794-20260424_012846.csv")
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/_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_ds"
|
| 5 |
+
src = r"/work/output-SpecializedModels/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds"
|
| 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_tabbyflow-n9-20260424_012703",
|
| 22 |
+
])
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:edb6e8e3b2d6b01bdca99c2040f5676c1979a8303167cdb79c70850fa5ee66e5
|
| 3 |
+
size 1348
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/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/n9/tabbyflow/tabbyflow-n9-20260424_012703/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:653eac75afead5f53a09d01b5319fa3ecb7e7618590c4578c04e260759b78ed9
|
| 3 |
+
size 7864
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0fe26882333f29cac798f0b59a80b62564e54077705a877de3c23a4fde28fd84
|
| 3 |
+
size 912
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b447ae09f1ca97bbc87e830b9a01760eb9a38e2a926aab4291fe3ce810a2b419
|
| 3 |
+
size 8665
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f33e440b74e1b579f4328fc397e86cc051a1fc1e760ec3079468bca95120bf1c
|
| 3 |
+
size 621
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d885776c1caf3bc43a474d54dddcd3c92230d85db294c1655e00797e0665f08
|
| 3 |
+
size 1636
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8d13f8e2b38a047750a3197b6a95249a935bb4f3bbe57803a1ff585719dd32c
|
| 3 |
+
size 54106
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fe9e94a37bc9d9ce8e3e5aa24d99fd2c51e68f9fb34b56f0cd9b89a92502d07
|
| 3 |
+
size 431866
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:762c2acfb195c4245b988607fee3af7064ee8a00fa18714cb3e7a7becb54ff55
|
| 3 |
+
size 54170
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/staged/tabbyflow/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1bd1a479ccb2b9fa3574949bd761a3e5268bd0780e27a906bfb4dc34143cbda5
|
| 3 |
+
size 322
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/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/n9/tabbyflow/tabbyflow-n9-20260424_012703/staged/tabbyflow/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb2cb232c940a596583a5fe51eb1b649022ae1a29fa190adae8b772cf45cbe06
|
| 3 |
+
size 8863
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabbyflow-n9-8794-20260424_012846.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c5d31b384def7e853dec97e099ff299e8ebe97fb84d9ceaa781b17965dd6795
|
| 3 |
+
size 911506
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabbyflow_resolved_ckpt.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:522af33d986936d60ab2d498e81801b8b128d2a76162cfdcdb8a0b1b374c1210
|
| 3 |
+
size 354
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabbyflow_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1254579565b264715f78cf132e82a57469eb8d28e9f9317ee2cfe8df70da6610
|
| 3 |
+
size 259
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:185cfbbae03a992223345f6140549ea66ae67683f5261066f9cb83dd7ce420a6
|
| 3 |
+
size 128
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ead8d3fac4c75439ddfe48e7715746832c4bcdd93f94830f2cfe08669b95fb5e
|
| 3 |
+
size 128
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:185cfbbae03a992223345f6140549ea66ae67683f5261066f9cb83dd7ce420a6
|
| 3 |
+
size 128
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5eab9516ecff27932251cde94fe173ef0f77e59c846c36f4aea2d1942980edce
|
| 3 |
+
size 70464
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c1d44c64882653114c790dc5f3ebf710f9435469b196fc0408488f33f15fef8
|
| 3 |
+
size 562944
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87803d0debb266a57200d66fd4f60552716d764eb3763d44e04eb83e6e516ae5
|
| 3 |
+
size 70464
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7d45a4d5f577ae0567c2ba3db35ea0a8e7a0fc78b561bf6a1c953eef33a8ed7b
|
| 3 |
+
size 3329
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fe9e94a37bc9d9ce8e3e5aa24d99fd2c51e68f9fb34b56f0cd9b89a92502d07
|
| 3 |
+
size 431866
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8d13f8e2b38a047750a3197b6a95249a935bb4f3bbe57803a1ff585719dd32c
|
| 3 |
+
size 54106
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:762c2acfb195c4245b988607fee3af7064ee8a00fa18714cb3e7a7becb54ff55
|
| 3 |
+
size 54170
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cd8cdeaeabe29d34160807ab5f85f2b95f0f0ae15da867f8254dfdce53cf668e
|
| 3 |
+
size 8920
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ddb5636e9c4047ca663895882c87b086bc376eeb1d968c33ed9d34802be0657
|
| 3 |
+
size 70480
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/tabular_bundle/pipeline_ds/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c2a6d94f0ff56f876afbd0747a1ebb198c6e878efdcbbdda339610e63cf664b2
|
| 3 |
+
size 8920
|
syntheticSuccess/n9/tabbyflow/tabbyflow-n9-20260424_012703/train_20260424_012704.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f183241b159bf241aded668a2300919f5f608354562789d113215c6ce9928878
|
| 3 |
+
size 383531
|