Improve model card: Add metadata and GitHub link
Browse filesThis PR updates the model card for the COOPER model to enhance its discoverability and provide more complete information:
- Adds `pipeline_tag: image-to-image` to the YAML metadata, reflecting the model's core capabilities in perception enhancement (depth estimation, semantic segmentation).
- Adds `library_name: transformers` to the YAML metadata, as evidenced by the `pip install -e ./transformers-4.54.0` instruction in the "Quick Start" guide. This enables the automated "Use in Transformers" code snippet on the Hub.
- Adds `license: apache-2.0` to the YAML metadata to specify the model's license.
- Updates the existing paper link in the markdown content to point to the Hugging Face paper page: https://huggingface.co/papers/2512.04563.
- Adds an explicit link to the GitHub repository (`https://github.com/zhangzef/COOPER`) in the header for easier access to the code.
These changes will make the model card more informative and user-friendly.
Please review and merge if these improvements align with the repository's goals.
|
@@ -1,7 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# COOPER π§
|
| 2 |
|
| 3 |
<p align="center">
|
| 4 |
-
π <a href="https://
|
|
|
|
| 5 |
π€ <a href="https://huggingface.co/Starrrrrry/COOPER">COOPER Model</a> |
|
| 6 |
π§ <a href="https://huggingface.co/Starrrrrry/COOPER-AMG">COOPER-AMG Model</a> |
|
| 7 |
π <a href="https://huggingface.co/datasets/Starrrrrry/COOPER_Train_Set">COOPER Training Data</a>
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pipeline_tag: image-to-image
|
| 3 |
+
library_name: transformers
|
| 4 |
+
license: apache-2.0
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
# COOPER π§
|
| 8 |
|
| 9 |
<p align="center">
|
| 10 |
+
π <a href="https://huggingface.co/papers/2512.04563">Paper</a> |
|
| 11 |
+
π» <a href="https://github.com/zhangzef/COOPER">Code</a> |
|
| 12 |
π€ <a href="https://huggingface.co/Starrrrrry/COOPER">COOPER Model</a> |
|
| 13 |
π§ <a href="https://huggingface.co/Starrrrrry/COOPER-AMG">COOPER-AMG Model</a> |
|
| 14 |
π <a href="https://huggingface.co/datasets/Starrrrrry/COOPER_Train_Set">COOPER Training Data</a>
|