Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: stabilityai/sd-turbo
|
| 4 |
+
tags:
|
| 5 |
+
- image-super-resolution
|
| 6 |
+
- refsr
|
| 7 |
+
- diffusion-models
|
| 8 |
+
- image-restoration
|
| 9 |
+
- pytorch
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# AdaRefSR: Adaptive Reference-based Image Super-Resolution
|
| 13 |
+
|
| 14 |
+
Official implementation of **AdaRefSR**, a state-of-the-art Reference-based Image Super-Resolution (RefSR) framework powered by Diffusion Models. AdaRefSR adaptively extracts and fuses high-quality textures from reference images to restore low-quality inputs.
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
## 🛠️ Installation
|
| 19 |
+
|
| 20 |
+
Start by cloning the project and navigating into the directory:
|
| 21 |
+
```bash
|
| 22 |
+
git clone https://github.com/vivoCameraResearch/AdaRefSR.git
|
| 23 |
+
cd AdaRefSR
|
| 24 |
+
```
|