Add files using upload-large-folder tool
Browse files- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/_tabbyflow_gen.py +33 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/_tabbyflow_train.py +22 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/gen_20260501_040149.log +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/input_snapshot.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/models_tabbyflow/trained.pt +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/runtime_result.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/staged_features.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/test.csv +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/train.csv +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/val.csv +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/tabbyflow/adapter_report.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/tabbyflow/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/tabbyflow/model_input_manifest.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabbyflow-n11-15215-20260501_040149.csv +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabbyflow_train_meta.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_cat_test.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_cat_train.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_cat_val.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_num_test.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_num_train.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_num_val.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/info.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/real.csv +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/test.csv +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/val.csv +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/y_test.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/y_train.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/y_val.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/train_20260501_035405.log +3 -0
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/_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_n11"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11"
|
| 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_efvfm",
|
| 19 |
+
"--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_n11/adapter_efvfm/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(15215)),
|
| 21 |
+
])
|
| 22 |
+
base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm")
|
| 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-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabbyflow-n11-15215-20260501_040149.csv")
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/_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_n11"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11"
|
| 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_efvfm",
|
| 22 |
+
])
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/gen_20260501_040149.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f90efc0e932b63b5d1e11d7ce2d52a66db00a8b39c475c72035c888a978908c
|
| 3 |
+
size 3066
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c83f6708a86aab80dc3fef05377aadaed79d2d8bd6454495cda0baae1270e7b2
|
| 3 |
+
size 1362
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/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/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68c3209b66f9891477ccb430a3d02e3a299eb9c1a2d045bbf528bdfeb8de4fb0
|
| 3 |
+
size 5283
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6336138aac04ffe8bd9b1596f9d11556e4417d85ddb950dd20c9532ef6b9fd80
|
| 3 |
+
size 915
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3daee6c5c6d5e13f22de300b22096ae57438196ff46efd0282e61575e0c773f
|
| 3 |
+
size 6119
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:271e1bfdfe8353c7ff9d5ca545bf1c2aa1d358af80e58709c156647bb5764543
|
| 3 |
+
size 932
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ea5e7a5363e366f12e9794c57325c7f28e71ef584464c2f78fa67b80eca9a82
|
| 3 |
+
size 1025
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50
|
| 3 |
+
size 148017
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7
|
| 3 |
+
size 1182326
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44
|
| 3 |
+
size 147784
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/tabbyflow/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc832a620f1dc91a378276e7f7fba74386f600533521fa8e6743c4b6788bf29c
|
| 3 |
+
size 329
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/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/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/tabbyflow/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa2181a98e29806d8a9e5de6c8bdf9ca6aea809c74e2474b98073a93761966ae
|
| 3 |
+
size 6324
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabbyflow-n11-15215-20260501_040149.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f5156f822b2f9ecd1f425c50d2a2628f0855e7320cfd076a82e85c9085eb83bd
|
| 3 |
+
size 1556389
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabbyflow_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f837e1881e9c2f8d03231fd601ddb8ea08d38a0cb5d724265aed91d72924956e
|
| 3 |
+
size 79
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8
|
| 3 |
+
size 128
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8
|
| 3 |
+
size 128
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8
|
| 3 |
+
size 128
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59
|
| 3 |
+
size 608728
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59
|
| 3 |
+
size 608728
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59
|
| 3 |
+
size 608728
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e28ab7e5d1e8ddbdee02b8e6ae92b33ac9bab1b05708c4f5a429d28f14eff1c
|
| 3 |
+
size 2320
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2
|
| 3 |
+
size 1182272
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2
|
| 3 |
+
size 1182272
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2
|
| 3 |
+
size 1182272
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf
|
| 3 |
+
size 121848
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf
|
| 3 |
+
size 121848
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf
|
| 3 |
+
size 121848
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_035405/train_20260501_035405.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:909303fe46899c17626d1d87ee607a0b01886541743bf51c10b679044237ed92
|
| 3 |
+
size 516560
|