Update README.md
Browse files
README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
---
|
| 2 |
title: MaIR
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 5.42.0
|
| 8 |
app_file: app.py
|
|
@@ -11,3 +11,20 @@ license: mit
|
|
| 11 |
---
|
| 12 |
|
| 13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
title: MaIR
|
| 3 |
+
emoji: 👀
|
| 4 |
+
colorFrom: pink
|
| 5 |
+
colorTo: purple
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 5.42.0
|
| 8 |
app_file: app.py
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
| 14 |
+
# MaIR - CVPR 2025
|
| 15 |
+
|
| 16 |
+
Official Hugging Face Space for **MaIR** ([CVPR 2025 paper](https://github.com/XLearning-SCU/2025-CVPR-MaIR))
|
| 17 |
+
|
| 18 |
+
## Overview
|
| 19 |
+
MaIR is a deep learning model for [task] with PyTorch implementation.
|
| 20 |
+
|
| 21 |
+
## Demo
|
| 22 |
+
Interact with the model directly on Hugging Face Spaces: [Demo Link](https://huggingface.co/spaces/<YOUR_USERNAME>/MaIR-CVPR2025)
|
| 23 |
+
|
| 24 |
+
## Setup (Local)
|
| 25 |
+
```bash
|
| 26 |
+
git clone https://github.com/XLearning-SCU/2025-CVPR-MaIR.git
|
| 27 |
+
cd 2025-CVPR-MaIR
|
| 28 |
+
python -m venv mair_env
|
| 29 |
+
source mair_env/bin/activate
|
| 30 |
+
pip install -r requirements.txt
|