Add pipeline tag to metadata
Browse filesThis PR adds the `pipeline_tag: image-classification` to the metadata of the model card to improve its discoverability on the Hugging Face Hub. It also fixes the syntax highlighting for the usage code snippet by changing the block language from `bash` to `python`.
README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
| 3 |
tags:
|
| 4 |
- Face
|
| 5 |
- Face Recognition
|
|
@@ -55,7 +56,7 @@ FaceMoE replaces the standard transformer FFN with multiple expert MLPs and a le
|
|
| 55 |
|
| 56 |
You can download the weights using:
|
| 57 |
|
| 58 |
-
```
|
| 59 |
from huggingface_hub import hf_hub_download
|
| 60 |
|
| 61 |
# Finetuned Weights
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
pipeline_tag: image-classification
|
| 4 |
tags:
|
| 5 |
- Face
|
| 6 |
- Face Recognition
|
|
|
|
| 56 |
|
| 57 |
You can download the weights using:
|
| 58 |
|
| 59 |
+
```python
|
| 60 |
from huggingface_hub import hf_hub_download
|
| 61 |
|
| 62 |
# Finetuned Weights
|