Add files using upload-large-folder tool
Browse files- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/_tabbyflow_gen.py +33 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/_tabbyflow_train.py +22 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/gen_20260501_000941.log +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/input_snapshot.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/models_tabbyflow/trained.pt +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/runtime_result.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/staged_features.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/test.csv +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/train.csv +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/val.csv +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/tabbyflow/adapter_report.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/tabbyflow/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/tabbyflow/model_input_manifest.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabbyflow-n11-15215-20260501_000941.csv +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabbyflow_train_meta.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_cat_test.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_cat_train.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_cat_val.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_num_test.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_num_train.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_num_val.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/info.json +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/real.csv +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/test.csv +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/val.csv +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/y_test.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/y_train.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/y_val.npy +3 -0
- syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/train_20260501_000210.log +3 -0
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/_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_000210/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_000210/tabbyflow-n11-15215-20260501_000941.csv")
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/_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_000210/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_000210/gen_20260501_000941.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d19cdbb6d0cecc0c344bad4e07c12df30793d8994759d2855bb4ff92b66531d
|
| 3 |
+
size 3065
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/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_000210/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_000210/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_000210/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_000210/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b693ca9fa99dcf8a8023b100a63001d64830391a74859232a9f396128d9c03d
|
| 3 |
+
size 6119
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5e82ae7da42f8420bab7c2fe2aedabf858c9196499ed0f13ded06449619beeca
|
| 3 |
+
size 932
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/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_000210/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_000210/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_000210/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_000210/staged/tabbyflow/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb76a9472c0d8748ba6ea955f798d248ae5b4238a883a1d3ba9b33d779dc8ab8
|
| 3 |
+
size 329
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/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_000210/staged/tabbyflow/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1531f7bc6786e8b212afd5a27e4e9f4af52519e4cc7ea7a6e330c9c355d76c8a
|
| 3 |
+
size 6324
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabbyflow-n11-15215-20260501_000941.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f40c2a160ea22e4435ccea8fcb0d9467fa8f1f6f7c886c41e85274f9bf7edc05
|
| 3 |
+
size 1555282
|
syntheticSuccess/n11/tabbyflow/tabbyflow-n11-20260501_000210/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_000210/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_000210/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_000210/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_000210/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_000210/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_000210/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_000210/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_000210/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_000210/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_000210/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_000210/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_000210/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_000210/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_000210/train_20260501_000210.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d28858e427269843d994e6532347987c862c60e1cec7b826cc0935c0ba0829ec
|
| 3 |
+
size 516222
|