Upload 4 files
Browse files- README.md +32 -3
- blurdataset.pth +3 -0
- bocchi.pth +3 -0
- reloblur.pth +3 -0
README.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Pretrained Checkpoints
|
| 2 |
+
|
| 3 |
+
| File | Train source | Paper Table 2 mIoU | Paper Table 3 mIoU |
|
| 4 |
+
|-------------------|--------------|-------------------:|-------------------:|
|
| 5 |
+
| `bocchi.pth` | BOCCHI | 0.850 | 0.403 |
|
| 6 |
+
| `reloblur.pth` | ReLoBlur | 0.930 | 0.388 |
|
| 7 |
+
| `blurdataset.pth` | BlurDataset | 0.640 | 0.276 |
|
| 8 |
+
|
| 9 |
+
All checkpoints are **MultiTransformUNet** (alias `DCTEverywhereUNet`,
|
| 10 |
+
referred to in the paper as **MSDCT-UNet**): same architecture, different
|
| 11 |
+
training source. Each is ~117 MB (FP32).
|
| 12 |
+
|
| 13 |
+
## Download
|
| 14 |
+
|
| 15 |
+
> **Anonymous review note**: pretrained weights are hosted on an external
|
| 16 |
+
> service that does not reveal author identity. Replace the URLs below with
|
| 17 |
+
> the de-anonymised HuggingFace links during the camera-ready phase.
|
| 18 |
+
|
| 19 |
+
```bash
|
| 20 |
+
# placeholder (to be replaced before camera-ready)
|
| 21 |
+
mkdir -p checkpoints
|
| 22 |
+
curl -L <ANONYMIZED_URL>/bocchi.pth -o checkpoints/bocchi.pth
|
| 23 |
+
curl -L <ANONYMIZED_URL>/reloblur.pth -o checkpoints/reloblur.pth
|
| 24 |
+
curl -L <ANONYMIZED_URL>/blurdataset.pth -o checkpoints/blurdataset.pth
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
## Verifying
|
| 28 |
+
|
| 29 |
+
```bash
|
| 30 |
+
python eval.py --config configs/bocchi.yaml --ckpt checkpoints/bocchi.pth --split val
|
| 31 |
+
# Expected: mean_iou ~ 0.850
|
| 32 |
+
```
|
blurdataset.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:365d9035f176f1e8684c0cbcde6deb42f4870b637e5d0533fbb99a5840a22200
|
| 3 |
+
size 117885519
|
bocchi.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a7192e30e782b38408d96d38edd699ddf68d04c2c19ea4d66370d0c7b1ce037d
|
| 3 |
+
size 117878181
|
reloblur.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e27e176df028cff48fa657823726cfb7dba4579c2123140ea8c45cc69d604fe
|
| 3 |
+
size 117884649
|