Add files using upload-large-folder tool
Browse files- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/_tabdiff_gen.py +36 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/_tabdiff_train.py +21 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/gen_20260501_191104.log +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/input_snapshot.json +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/runtime_result.json +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/staged/public/staged_features.json +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/staged/public/test.csv +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/staged/public/train.csv +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/staged/public/val.csv +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabdiff-n14-1600-20260501_191104.csv +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabdiff_train_meta.json +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/X_cat_test.npy +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/X_cat_train.npy +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/X_cat_val.npy +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/X_num_test.npy +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/X_num_train.npy +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/X_num_val.npy +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/info.json +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/real.csv +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/test.csv +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/val.csv +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/y_test.npy +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/y_train.npy +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/y_val.npy +3 -0
- syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/train_20260501_190808.log +3 -0
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n14"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14"
|
| 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_n14/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(1600)),
|
| 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/n14/tabdiff/tabdiff-n14-20260501_190808/tabdiff-n14-1600-20260501_191104.csv")
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n14"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14"
|
| 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/n14/tabdiff/tabdiff-n14-20260501_190808/gen_20260501_191104.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c69c3cd68109999b821a4b571d98c686d1151b646bfd228f0c7afb6a6b925bd7
|
| 3 |
+
size 5011
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1be7e75d0e465803a1d1487e6df1a4cee413ea6743c0b0e4dec46858fcc7b58f
|
| 3 |
+
size 1359
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/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/n14/tabdiff/tabdiff-n14-20260501_190808/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1039de91400208739668ec5dbba162e50476ffb8f7bc2c41c34a9e152d1a1fd7
|
| 3 |
+
size 25212
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d0323cb1844f3ed9d898f3dd78211792dbc408cc2661f88cffa593a96fe919f2
|
| 3 |
+
size 920
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5d26b88cf4dd7cee51c24c4aa1619cd85711eb1eb8b2377e5b2a5dcd48203597
|
| 3 |
+
size 26028
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31d9df1a18acbd8f47b8a49ca580af708bab2ea5f376fa09ea0107d966b35c51
|
| 3 |
+
size 914
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ceb242f15c8115703b617ca54db02ff27dff41d99dd4f9af89bb5fcb513e5bb
|
| 3 |
+
size 5032
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c58f97d23ce9ec15dde2caf4ba02105c2839eb4b1e1bb7f5183e0661fec4ecd
|
| 3 |
+
size 88640
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c185607e5260848288c1fe3ee266131707a54e9f5e053f1234c019f315783fac
|
| 3 |
+
size 700663
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:efcb8ee58a24ce4397213b3c4df4826fbcc6662da77b0919ff4e1935d12e2e89
|
| 3 |
+
size 87578
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:27a57abeba214f5dfe823758886cc5853d9465f7342831c2bc8ae996bd212814
|
| 3 |
+
size 323
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/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/n14/tabdiff/tabdiff-n14-20260501_190808/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c2267ae097d5818a0e0f29692470ac5ea882cd09ca31ee8fd05317cbce62e1c
|
| 3 |
+
size 26227
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabdiff-n14-1600-20260501_191104.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5205b09da627bfe8d750b22d0fde9b390076bd9dfe131aa3ad10be39177002a8
|
| 3 |
+
size 821773
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d45f0cd6e75b9687e8390ef7b963d5c46601536f2e5a9d4c49bc34c93c96f8a
|
| 3 |
+
size 83
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:acf6e8882485ee3b0c6f3807cc8be4986b0a6158e264ff07b50bb3b064c32df5
|
| 3 |
+
size 128
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:acf6e8882485ee3b0c6f3807cc8be4986b0a6158e264ff07b50bb3b064c32df5
|
| 3 |
+
size 128
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:acf6e8882485ee3b0c6f3807cc8be4986b0a6158e264ff07b50bb3b064c32df5
|
| 3 |
+
size 128
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:720909250baaad32f225205c0d03e19f433b3164e3391cd3d6f1e28d6a78e664
|
| 3 |
+
size 326528
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:720909250baaad32f225205c0d03e19f433b3164e3391cd3d6f1e28d6a78e664
|
| 3 |
+
size 326528
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:720909250baaad32f225205c0d03e19f433b3164e3391cd3d6f1e28d6a78e664
|
| 3 |
+
size 326528
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc55b8625d691cd8b57ca03104cb986c4082379ee241778f91dcf4411f15658b
|
| 3 |
+
size 9555
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3ed48c8c3d2ab5fc75fd9d1da3f953b1cc4296de09f79b942f2ccb80e1b9f785
|
| 3 |
+
size 700250
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3ed48c8c3d2ab5fc75fd9d1da3f953b1cc4296de09f79b942f2ccb80e1b9f785
|
| 3 |
+
size 700250
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3ed48c8c3d2ab5fc75fd9d1da3f953b1cc4296de09f79b942f2ccb80e1b9f785
|
| 3 |
+
size 700250
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76ab46d6c4b1f15f80bbdd93ef0d068b0f7a70ef372471360cf8a28469f65b8a
|
| 3 |
+
size 12928
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76ab46d6c4b1f15f80bbdd93ef0d068b0f7a70ef372471360cf8a28469f65b8a
|
| 3 |
+
size 12928
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/tabular_bundle/pipeline_n14/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76ab46d6c4b1f15f80bbdd93ef0d068b0f7a70ef372471360cf8a28469f65b8a
|
| 3 |
+
size 12928
|
syntheticSuccess/n14/tabdiff/tabdiff-n14-20260501_190808/train_20260501_190808.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5d0f4965c4137be2bd424593ba53256676feb5a632f2c727fea28be75e166127
|
| 3 |
+
size 291785
|