Improve model card: Add image classification pipeline tag, GitHub link, and update project page URL
Browse filesThis PR enhances the model card by making the following improvements:
- **Added `pipeline_tag: image-classification`**: This metadata ensures the model is correctly categorized on the Hugging Face Hub, improving its discoverability for users looking for image classification models.
- **Added GitHub repository link**: A direct link to the official GitHub repository (`https://github.com/SihanXU/nepa`) has been included as a badge for easy access to the code.
- **Updated Project Page URL**: The existing "Project Page" badge has been updated to point to the correct project website: `https://sihanxu.me/nepa`, resolving a factual discrepancy mentioned in the paper info.
The rest of the model card content, including the valuable "Quick Start" usage example and the arXiv paper link, has been preserved as it provides complete and accurate information.
|
@@ -1,16 +1,19 @@
|
|
| 1 |
---
|
| 2 |
-
library_name: transformers
|
| 3 |
-
license: apache-2.0
|
| 4 |
-
datasets:
|
| 5 |
-
- ILSVRC/imagenet-1k
|
| 6 |
base_model:
|
| 7 |
- SixAILab/nepa-base-patch14-224
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
---
|
|
|
|
| 9 |
# NEPA: Next-Embedding Prediction Makes Strong Vision Learners
|
| 10 |
|
| 11 |
[](https://arxiv.org/abs/2512.16922)
|
| 12 |
-
[](https://sihanxu.
|
| 13 |
[](https://huggingface.co/collections/SixAILab/nepa)
|
|
|
|
| 14 |
|
| 15 |
This is a PyTorch/GPU re-implementation of Next-Embedding Prediction Makes Strong Vision Learners.
|
| 16 |
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
base_model:
|
| 3 |
- SixAILab/nepa-base-patch14-224
|
| 4 |
+
datasets:
|
| 5 |
+
- ILSVRC/imagenet-1k
|
| 6 |
+
library_name: transformers
|
| 7 |
+
license: apache-2.0
|
| 8 |
+
pipeline_tag: image-classification
|
| 9 |
---
|
| 10 |
+
|
| 11 |
# NEPA: Next-Embedding Prediction Makes Strong Vision Learners
|
| 12 |
|
| 13 |
[](https://arxiv.org/abs/2512.16922)
|
| 14 |
+
[](https://sihanxu.me/nepa)
|
| 15 |
[](https://huggingface.co/collections/SixAILab/nepa)
|
| 16 |
+
[](https://github.com/SihanXU/nepa)
|
| 17 |
|
| 18 |
This is a PyTorch/GPU re-implementation of Next-Embedding Prediction Makes Strong Vision Learners.
|
| 19 |
|