Add files using upload-large-folder tool
Browse files- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/_tabdiff_gen.py +36 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/_tabdiff_train.py +21 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/gen_20260501_175339.log +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/input_snapshot.json +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/runtime_result.json +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/staged/public/staged_features.json +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/staged/public/test.csv +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/staged/public/train.csv +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/staged/public/val.csv +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabdiff-n1-3680-20260501_175339.csv +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabdiff_train_meta.json +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/X_cat_test.npy +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/X_cat_train.npy +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/X_cat_val.npy +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/X_num_test.npy +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/X_num_train.npy +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/X_num_val.npy +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/info.json +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/real.csv +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/test.csv +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/val.csv +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/y_test.npy +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/y_train.npy +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/y_val.npy +3 -0
- syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/train_20260501_175032.log +3 -0
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n1"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1"
|
| 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_n1/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(3680)),
|
| 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/n1/tabdiff/tabdiff-n1-20260501_175031/tabdiff-n1-3680-20260501_175339.csv")
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n1"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1"
|
| 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/n1/tabdiff/tabdiff-n1-20260501_175031/gen_20260501_175339.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a095d3c155e4b6ac18024ceb3d63134582a724e69ce08c43ae635a76f2da3487
|
| 3 |
+
size 5044
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f40a80bb2829060e010f2bd8481476088d91d4a608f5fc74803807363b357670
|
| 3 |
+
size 1348
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/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/n1/tabdiff/tabdiff-n1-20260501_175031/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67595708c2c19190410f8afea4b51e9a39f1e5f68e9d4fb4df13bb9b0c08edc8
|
| 3 |
+
size 27287
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d73fada84cfae4c84553e785f773844a3e57274c99b5d593e5557651c62d38d0
|
| 3 |
+
size 912
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:015593289a56878978a0445c2b7baa0ec1d373a1d091515446fab7eae850e2ac
|
| 3 |
+
size 28093
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:060bf534503768fc8fd88a747ac3908187ff66c86e60cbcbaa6c80d890c0fe83
|
| 3 |
+
size 906
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0541ebc162054f0e18e2949b26487b63a9a875b658131594c2420f9da180e494
|
| 3 |
+
size 5900
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:165b9f8df9afdbccf1a6362155a785860134438138af92d7288cbe88b4965b03
|
| 3 |
+
size 111841
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f723c8c6f475f4dee37b81af1fc803cca3362ca22bea09c90cc39404b034b23
|
| 3 |
+
size 885832
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff8bfb6a9fa9b786c8e9a34d4619140e43ad25ca275d2459cc179352865f670c
|
| 3 |
+
size 111513
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:571cca400dd64cd04f7b4a03eb32887aac75485e1b2cfa0302ccd772a9b001ff
|
| 3 |
+
size 321
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/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/n1/tabdiff/tabdiff-n1-20260501_175031/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2aca39e6ed78744f5318a6244bc8a42612544cc2a40f399007c79e8700d49b70
|
| 3 |
+
size 28290
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabdiff-n1-3680-20260501_175339.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae01799e5b665687bfa64f85731200759b5ecf8b0a59cac210efc772db8d2dd3
|
| 3 |
+
size 932824
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95d4c0c622bf949c56d1aaf42db9f7c1c9463bda2534bebcaaeadf14a6aae61f
|
| 3 |
+
size 82
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f0f734917851f75b2ed951170ec72ea321a8d9fd217091fcbc73d697bc61be6
|
| 3 |
+
size 88448
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f0f734917851f75b2ed951170ec72ea321a8d9fd217091fcbc73d697bc61be6
|
| 3 |
+
size 88448
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f0f734917851f75b2ed951170ec72ea321a8d9fd217091fcbc73d697bc61be6
|
| 3 |
+
size 88448
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ed20a11b4ae7a50b2b71098612f94fc07e1682a2a9484b330757848870dd5ed
|
| 3 |
+
size 795008
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ed20a11b4ae7a50b2b71098612f94fc07e1682a2a9484b330757848870dd5ed
|
| 3 |
+
size 795008
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ed20a11b4ae7a50b2b71098612f94fc07e1682a2a9484b330757848870dd5ed
|
| 3 |
+
size 795008
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e93ccc713fa454f262b55a7b67e917446bd98d7c4c904d6d613ba9afbf55171
|
| 3 |
+
size 11082
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0502be7e19759b642cb0517732b240ef690668e5d0d10587e261f5ec56759aa0
|
| 3 |
+
size 862930
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0502be7e19759b642cb0517732b240ef690668e5d0d10587e261f5ec56759aa0
|
| 3 |
+
size 862930
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0502be7e19759b642cb0517732b240ef690668e5d0d10587e261f5ec56759aa0
|
| 3 |
+
size 862930
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95fccfea951830a81be642ed8a6b7b609467a19b70ceeca6a4c362957b7924a6
|
| 3 |
+
size 29568
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95fccfea951830a81be642ed8a6b7b609467a19b70ceeca6a4c362957b7924a6
|
| 3 |
+
size 29568
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/tabular_bundle/pipeline_n1/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95fccfea951830a81be642ed8a6b7b609467a19b70ceeca6a4c362957b7924a6
|
| 3 |
+
size 29568
|
syntheticSuccess/n1/tabdiff/tabdiff-n1-20260501_175031/train_20260501_175032.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:63c3ae9e77d4fff43310f27069e11a04ac11578c77a3b9dd6e9f4ce218d7b21b
|
| 3 |
+
size 297493
|