Add files using upload-large-folder tool
Browse files- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/_tabdiff_gen.py +36 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/_tabdiff_train.py +21 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/gen_20260501_163534.log +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/input_snapshot.json +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/runtime_result.json +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/staged/public/staged_features.json +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/staged/public/test.csv +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/staged/public/train.csv +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/staged/public/val.csv +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabdiff-m9-15326-20260501_163534.csv +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabdiff_train_meta.json +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/X_cat_test.npy +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/X_cat_train.npy +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/X_cat_val.npy +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/X_num_test.npy +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/X_num_train.npy +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/X_num_val.npy +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/info.json +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/real.csv +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/test.csv +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/val.csv +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/y_test.npy +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/y_train.npy +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/y_val.npy +3 -0
- syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/train_20260501_162650.log +3 -0
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_m9"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9"
|
| 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_m9/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(15326)),
|
| 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/m9/tabdiff/tabdiff-m9-20260501_162649/tabdiff-m9-15326-20260501_163534.csv")
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_m9"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9"
|
| 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/m9/tabdiff/tabdiff-m9-20260501_162649/gen_20260501_163534.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:02ef5641d149a130d3f0bf0625c46416cfa5afb9f8add63d97db98b70905f9fb
|
| 3 |
+
size 7103
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:126b11034c8e2676ad2e2024ae90233a000c9e715963e9727185be6db6763717
|
| 3 |
+
size 1349
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/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/m9/tabdiff/tabdiff-m9-20260501_162649/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:993d65c319b791da718f3be7cf7ae72d12cd43c241d0cda0d82a3b4506c4c984
|
| 3 |
+
size 6709
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5a13fda4474d228b9948e5ce70d1d1786a103388cb5db7940f84ef415190a89a
|
| 3 |
+
size 913
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49a56b1011ddf9eb37d4b5a77f8a3210840f4f0cfd55071b3488505632e94e68
|
| 3 |
+
size 7515
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:591b3f049f820be1c4ec7c597feb94ba65395b5e8219d36a843ce9189ca304ce
|
| 3 |
+
size 909
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c737f5273d9543daa7adfeeadd1d30829575938fe476cf5bc4f780fd594a4fd
|
| 3 |
+
size 1407
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f61fd91d6b36fb78247e6a342fc5f089500396b09eda485421c74d5012138c07
|
| 3 |
+
size 193961
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f8f6feb29a6c69afd23345fe03b2f3bb5d7f0f08bf8c8be86132e85ea54cfd65
|
| 3 |
+
size 1544257
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c73f6c76113338cf786877e911ac48e749a569a85ac2e266c7a6dea77ec9d28e
|
| 3 |
+
size 193818
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c827ec36cf5c2b5fc04ce4d729c79f210afad04630e189f14391aee873e95af
|
| 3 |
+
size 321
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/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/m9/tabdiff/tabdiff-m9-20260501_162649/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b33ffcb12f4489bbb259b792998480e94a62f21a2e392c4c06d6d19c4ba5eacf
|
| 3 |
+
size 7712
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabdiff-m9-15326-20260501_163534.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:50b7d2a5efdfab7b73bd1a3f30eca53b677c373bc197cc06bd007c68e11d9b5b
|
| 3 |
+
size 705034
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5139837f02a97457ae22dd97cfdac1b53762b796daf7f6436041af477847595e
|
| 3 |
+
size 82
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06eb3595be90c4e9190c420620234c355b668e5632d2d869a64b85a080cae497
|
| 3 |
+
size 1226208
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06eb3595be90c4e9190c420620234c355b668e5632d2d869a64b85a080cae497
|
| 3 |
+
size 1226208
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06eb3595be90c4e9190c420620234c355b668e5632d2d869a64b85a080cae497
|
| 3 |
+
size 1226208
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7943c2adffab551acd527e1d55f012d3a59b1dcfe2bfb91963fe98eade5a49d
|
| 3 |
+
size 184040
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7943c2adffab551acd527e1d55f012d3a59b1dcfe2bfb91963fe98eade5a49d
|
| 3 |
+
size 184040
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7943c2adffab551acd527e1d55f012d3a59b1dcfe2bfb91963fe98eade5a49d
|
| 3 |
+
size 184040
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ca026dab2259d8a615b03042c411c1654079eafe86f2955ea59397bc33a53ff
|
| 3 |
+
size 2590
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c06cfafcf6a36bd40c4564d1604d9381a534888090233b09eab448084203d5a1
|
| 3 |
+
size 620304
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c06cfafcf6a36bd40c4564d1604d9381a534888090233b09eab448084203d5a1
|
| 3 |
+
size 620304
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c06cfafcf6a36bd40c4564d1604d9381a534888090233b09eab448084203d5a1
|
| 3 |
+
size 620304
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc8bd737e275f3b3bdb41f9f4c775e33682aeb8b38f89dace80249eadf5064c3
|
| 3 |
+
size 122736
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc8bd737e275f3b3bdb41f9f4c775e33682aeb8b38f89dace80249eadf5064c3
|
| 3 |
+
size 122736
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/tabular_bundle/pipeline_m9/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc8bd737e275f3b3bdb41f9f4c775e33682aeb8b38f89dace80249eadf5064c3
|
| 3 |
+
size 122736
|
syntheticSuccess/m9/tabdiff/tabdiff-m9-20260501_162649/train_20260501_162650.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2085f424d659d1a9151c4384a0f1bd16eaab75ca06ea33eaa805071b6b3247f2
|
| 3 |
+
size 597760
|