Views
No views yet
| File | Architecture | Params | Scale | Size | License | Paper |
|---|---|---|---|---|---|---|
tbsrn-telescope-f16.gguf | TBSRN (text-line SR) | 1.13M | 2x | 2.2 MB | Apache-2.0 | CVPR 2021 |
pan-x4-f16.gguf | PAN (pixel attention) | 272K | 4x | 0.5 MB | Apache-2.0 | ECCV 2020W |
hat-sr-x4-f16.gguf | HAT (hybrid attention transformer) | 21M | 4x | 40 MB | MIT | CVPR 2023 |
dat-light-x2-f16.gguf | DAT-light (dual aggregation transformer) | 830K | 2x | 38 MB | Apache-2.0 | ICCV 2023 |
restormer-denoise-f16.gguf | Restormer (denoising) | 26M | 1x | 50 MB | Apache-2.0 | CVPR 2022 |
sr_telescope (Apache-2.0)pan_x4 (Apache-2.0)| Model | cos_sim | Status |
|---|---|---|
| TBSRN | 0.999985 | PASS |
| PAN | 0.999654 | PASS |
| HAT | 0.999990 | PASS |
| DAT-light | 0.999956 | PASS |
| Restormer | 1.000000 | PASS |
1from crispembed import CrispPanSr, CrispDatSr
2
3# PAN: 4x upscale
4sr = CrispPanSr("pan-x4-f16.gguf")
5out, ow, oh = sr.process(pixels, width, height)
6
7# DAT: 2x upscale (higher quality)
8sr = CrispDatSr("dat-light-x2-f16.gguf")
9out, ow, oh = sr.process(pixels, width, height)1# CLI
2crispembed --pan-model pan-x4-f16.gguf --pan-sr input.png > output.ppm
3crispembed --dat-model dat-light-x2-f16.gguf --dat-sr input.png > output.ppmapache-2.0. This repository redistributes under the same terms; it grants no rights the upstream licence does not.