Add model card and metadata
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
pipeline_tag: image-to-image
|
| 4 |
---
|
| 5 |
+
|
| 6 |
+
# Linear Recurrent Unit with Semantic Modulation for Image Super-Resolution
|
| 7 |
+
|
| 8 |
+
This repository contains the pre-trained weights for LSM, presented in the paper [Linear Recurrent Unit with Semantic Modulation for Image Super-Resolution](https://huggingface.co/papers/2606.19901).
|
| 9 |
+
|
| 10 |
+
- **GitHub Repository:** [https://github.com/MingyuChoi-run/LSM](https://github.com/MingyuChoi-run/LSM)
|
| 11 |
+
- **Paper:** [https://arxiv.org/abs/2606.19901](https://arxiv.org/abs/2606.19901)
|
| 12 |
+
|
| 13 |
+
## Abstract
|
| 14 |
+
Linear recurrent unit (LRU), designed with a principled formulation for stable linear recurrence, has demonstrated promising accuracy and robustness on long-range dependency tasks. However, its static parameterization and single-scan method limits its applicability to 2D vision tasks. In this study, we propose a LRU-based restoration network with a semantic modulating unit (SMU) to achieve a harmonious balance between performance and efficiency in single-image super-resolution. The SMU plays three key roles: LRU modulation, spatial categorization, and feature enhancement through learned prototype.
|
| 15 |
+
|
| 16 |
+
## Citation
|
| 17 |
+
|
| 18 |
+
```bibtex
|
| 19 |
+
@InProceedings{Choi_2026_CVPR,
|
| 20 |
+
author = {Choi, Mingyu and Han, Woo Kyoung and Im, Sunghoon and Jin, Kyong Hwan},
|
| 21 |
+
title = {Linear Recurrent Unit with Semantic Modulation for Image Super-Resolution},
|
| 22 |
+
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) Findings},
|
| 23 |
+
month = {June},
|
| 24 |
+
year = {2026},
|
| 25 |
+
pages = {4950-4960}
|
| 26 |
+
}
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
## Acknowledgements
|
| 30 |
+
This code is built on [BasicSR](https://github.com/XPixelGroup/BasicSR).
|