Add model card and metadata

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pipeline_tag: image-to-image
3
+ ---
4
+
5
+ # M2Retinexformer
6
+
7
+ This repository contains the official weights for **M2Retinexformer** (Multi-Modal Retinexformer), introduced in the paper [M2Retinexformer: Multi-Modal Retinexformer for Low-Light Image Enhancement](https://huggingface.co/papers/2605.12556).
8
+
9
+ - **Paper:** [M2Retinexformer: Multi-Modal Retinexformer for Low-Light Image Enhancement](https://huggingface.co/papers/2605.12556)
10
+ - **Code:** [GitHub Repository](https://github.com/YoussefAboelwafa/M2Retinexformer)
11
+
12
+ ## Introduction
13
+
14
+ Low-light image enhancement is challenging due to complex degradations, including amplified noise, artifacts, and color distortion. M2Retinexformer is a novel framework that extends [Retinexformer](https://arxiv.org/abs/2303.06705) by incorporating **depth cues**, **luminance priors**, and **semantic features** within a progressive refinement pipeline.
15
+
16
+ Depth provides geometric context invariant to lighting variations, while luminance and semantic features offer explicit guidance on brightness distribution and scene understanding. These modalities are fused through cross-attention with adaptive gating to dynamically balance illumination-guided self-attention and cross-attention based on the reliability of auxiliary cues.
17
+
18
+ ## Citation
19
+
20
+ If you find this work useful, please cite:
21
+
22
+ ```bibtex
23
+ @misc{aboelwafa2026m2retinexformermultimodalretinexformerlowlight,
24
+ title={M2Retinexformer: Multi-Modal Retinexformer for Low-Light Image Enhancement},
25
+ author={Youssef Aboelwafa and Hicham G. Elmongui and Marwan Torki},
26
+ year={2026},
27
+ eprint={2605.12556},
28
+ archivePrefix={arXiv},
29
+ primaryClass={cs.CV},
30
+ url={https://arxiv.org/abs/2605.12556},
31
+ }
32
+ ```
33
+
34
+ ## Acknowledgements
35
+
36
+ This project is built on the baseline architecture of [Retinexformer](https://github.com/caiyuanhao1998/Retinexformer).