Add `library_name` and `pipeline_tag` to model card
Browse filesThis PR improves the model card by adding the `library_name` and `pipeline_tag` to the metadata.
- `library_name: transformers` ensures that the model is recognized as compatible with the Hugging Face Transformers library, enabling the automated "how to use" widget.
- `pipeline_tag: text-generation` categorizes the model correctly, making it discoverable for users browsing text generation models on the Hub.
No changes were made to the existing descriptive content, which already provides comprehensive information, including the paper link, code repository, project page, and usage examples.
README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
| 1 |
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
language:
|
| 4 |
-
- en
|
| 5 |
base_model:
|
| 6 |
- Qwen/Qwen2.5-7B-Instruct
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# Fast-dLLM v2 (7B) — Efficient Block-Diffusion LLM
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
base_model:
|
| 3 |
- Qwen/Qwen2.5-7B-Instruct
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
license: apache-2.0
|
| 7 |
+
library_name: transformers
|
| 8 |
+
pipeline_tag: text-generation
|
| 9 |
---
|
| 10 |
|
| 11 |
# Fast-dLLM v2 (7B) — Efficient Block-Diffusion LLM
|