Add files using upload-large-folder tool
Browse files- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/_tabdiff_gen.py +36 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/_tabdiff_train.py +21 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/gen_20260501_191635.log +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/input_snapshot.json +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/runtime_result.json +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/staged/public/staged_features.json +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/staged/public/test.csv +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/staged/public/train.csv +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/staged/public/val.csv +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabdiff-n15-7857-20260501_191635.csv +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabdiff_train_meta.json +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/X_cat_test.npy +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/X_cat_train.npy +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/X_cat_val.npy +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/X_num_test.npy +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/X_num_train.npy +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/X_num_val.npy +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/info.json +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/real.csv +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/test.csv +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/val.csv +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/y_test.npy +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/y_train.npy +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/y_val.npy +3 -0
- syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/train_20260501_191118.log +3 -0
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n15"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15"
|
| 6 |
+
dst_data = os.path.join(td, "data", name)
|
| 7 |
+
dst_syn = os.path.join(td, "synthetic", name)
|
| 8 |
+
shutil.rmtree(dst_data, ignore_errors=True)
|
| 9 |
+
shutil.copytree(src, dst_data)
|
| 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(td)
|
| 14 |
+
os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "")
|
| 15 |
+
subprocess.check_call([
|
| 16 |
+
sys.executable, "-m", "tabdiff.main",
|
| 17 |
+
"--dataname", name, "--mode", "test", "--gpu", "0",
|
| 18 |
+
"--no_wandb", "--exp_name", r"adapter_learnable",
|
| 19 |
+
"--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_n15/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(7857)),
|
| 21 |
+
])
|
| 22 |
+
# test() 写入 tabdiff/result/<dataname>/<exp>/<epoch>/samples.csv
|
| 23 |
+
import glob as g
|
| 24 |
+
base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable")
|
| 25 |
+
best = None
|
| 26 |
+
best_t = -1.0
|
| 27 |
+
for root, _, files in os.walk(base):
|
| 28 |
+
if "samples.csv" in files:
|
| 29 |
+
p = os.path.join(root, "samples.csv")
|
| 30 |
+
t = os.path.getmtime(p)
|
| 31 |
+
if t > best_t:
|
| 32 |
+
best_t = t
|
| 33 |
+
best = p
|
| 34 |
+
if not best:
|
| 35 |
+
raise SystemExit("tabdiff: no samples.csv under " + base)
|
| 36 |
+
shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n15/tabdiff/tabdiff-n15-20260501_191117/tabdiff-n15-7857-20260501_191635.csv")
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n15"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15"
|
| 6 |
+
dst_data = os.path.join(td, "data", name)
|
| 7 |
+
dst_syn = os.path.join(td, "synthetic", name)
|
| 8 |
+
shutil.rmtree(dst_data, ignore_errors=True)
|
| 9 |
+
shutil.copytree(src, dst_data)
|
| 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(td)
|
| 14 |
+
os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "")
|
| 15 |
+
os.environ["TABDIFF_SMOKE_STEPS"] = "500"
|
| 16 |
+
os.environ["TABDIFF_ADAPTER_TRAIN"] = "1"
|
| 17 |
+
subprocess.check_call([
|
| 18 |
+
sys.executable, "-m", "tabdiff.main",
|
| 19 |
+
"--dataname", name, "--mode", "train", "--gpu", "0",
|
| 20 |
+
"--no_wandb", "--exp_name", r"adapter_learnable",
|
| 21 |
+
])
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/gen_20260501_191635.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d332df2a8ee1f81d4758cd87ff070b2dbe8e0071b5007e1064bf60e42f11f1cf
|
| 3 |
+
size 6409
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3f0b7941e2e5b3ab2691b712d6f27295282029396630aa62a2ab7ca70f97f4a
|
| 3 |
+
size 1362
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/models_tabdiff/trained.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb
|
| 3 |
+
size 74
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ddca2940077222faf35a4bf29d5b5b6aeb2afa8995164d0b5adda3df2df48ad
|
| 3 |
+
size 38000
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ee51584649883c35f66f557fc11a987bfff50fe6bcfc03b44e5189ca8fa3d6d
|
| 3 |
+
size 922
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c5717d051e312b92ec93517525d6da8356b06d7f819b5f255b0d5cdf5e9195a
|
| 3 |
+
size 38816
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51e34a4ee1dc5e4d95ab136007b41ae87391a5f533419da97e22a9a2124b6309
|
| 3 |
+
size 914
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:184b0925280e9e71a23f7ca7a743afdc06d3e99d3e2aca21368dcb79f77dc9a4
|
| 3 |
+
size 7948
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dcb79b0fa6748300b4f887d1f53cad4854f40f51cc1b0588c306eff8149735e6
|
| 3 |
+
size 170605
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:32e1119fb76fba5a78aadbceef58f29788e4bb3524824932de207c1160b92965
|
| 3 |
+
size 1358492
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f21567e6e1ef28313538289b418fad70f3673877f9a01f2d165dabf98095045
|
| 3 |
+
size 170395
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e61e9c774e88884d9d727b391e7670f9bbc2550ecb8ea60b327b2fed0822cd3
|
| 3 |
+
size 323
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/staged/tabdiff/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/n15/tabdiff/tabdiff-n15-20260501_191117/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2251e0502b5f74074b3c70f48a166926b56614df715dabc036e1d5ce64e1249a
|
| 3 |
+
size 39015
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabdiff-n15-7857-20260501_191635.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5480a83a104e02d7b3d07c41e60a4216d77b2329c75d4d6d1b58ba1cf37a22e8
|
| 3 |
+
size 2293486
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:010be0d7d814ead028c0b6ba842e5897e4e2a7e78d790af1bb734ddec7272d7d
|
| 3 |
+
size 83
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b4fbcd1472bb6d33c0c9a6a3a1768ed9e01d1f3bdf07ca6950663355d8d332e0
|
| 3 |
+
size 1948664
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b4fbcd1472bb6d33c0c9a6a3a1768ed9e01d1f3bdf07ca6950663355d8d332e0
|
| 3 |
+
size 1948664
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b4fbcd1472bb6d33c0c9a6a3a1768ed9e01d1f3bdf07ca6950663355d8d332e0
|
| 3 |
+
size 1948664
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f68e65b4b5b5a5efc738212b78ec69db57b0823e961381e2a4f6feda30c03dd5
|
| 3 |
+
size 1697240
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f68e65b4b5b5a5efc738212b78ec69db57b0823e961381e2a4f6feda30c03dd5
|
| 3 |
+
size 1697240
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f68e65b4b5b5a5efc738212b78ec69db57b0823e961381e2a4f6feda30c03dd5
|
| 3 |
+
size 1697240
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b43598e8c9fd7b650006812fd61e5b684c360d3aa7c84567d38607c7ed794b0d
|
| 3 |
+
size 13698
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd8da78170857a6e6c4c33dc0b11c173a4e2a214bf5f54e8ed1a32a864a7c1eb
|
| 3 |
+
size 1358061
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd8da78170857a6e6c4c33dc0b11c173a4e2a214bf5f54e8ed1a32a864a7c1eb
|
| 3 |
+
size 1358061
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd8da78170857a6e6c4c33dc0b11c173a4e2a214bf5f54e8ed1a32a864a7c1eb
|
| 3 |
+
size 1358061
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8898055c5faf6fbf3e5212983edefa34d06ac342e4347fb823af72b5edc74bd4
|
| 3 |
+
size 62984
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8898055c5faf6fbf3e5212983edefa34d06ac342e4347fb823af72b5edc74bd4
|
| 3 |
+
size 62984
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/tabular_bundle/pipeline_n15/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8898055c5faf6fbf3e5212983edefa34d06ac342e4347fb823af72b5edc74bd4
|
| 3 |
+
size 62984
|
syntheticSuccess/n15/tabdiff/tabdiff-n15-20260501_191117/train_20260501_191118.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:02742a70293255f8627dcd40d46a1ef5117118d43e2e47b60655973eaf38c7c8
|
| 3 |
+
size 384108
|