Improve model card: Add pipeline tag and library name
Browse filesThis PR enhances the model card for `SenseLLM/StructureCoder-7B` by:
- Adding the `pipeline_tag: text-generation`, which makes the model discoverable under the text-generation pipeline on the Hugging Face Hub (https://huggingface.co/models?pipeline_tag=text-generation).
- Adding the `library_name: transformers`, enabling an automated code snippet to be displayed for easy usage with the `transformers` library, as evidenced by the `config.json` (Qwen2ForCausalLM architecture and transformers version).
These changes improve the model's visibility and usability for the community.
README.md
CHANGED
@@ -1,8 +1,11 @@
|
|
1 |
---
|
2 |
-
license: apache-2.0
|
3 |
language:
|
4 |
- en
|
|
|
|
|
|
|
5 |
---
|
|
|
6 |
## Alignment with Fill-In-the-Middle for Enhancing Code Generation
|
7 |
|
8 |
<p align="center">
|
|
|
1 |
---
|
|
|
2 |
language:
|
3 |
- en
|
4 |
+
license: apache-2.0
|
5 |
+
pipeline_tag: text-generation
|
6 |
+
library_name: transformers
|
7 |
---
|
8 |
+
|
9 |
## Alignment with Fill-In-the-Middle for Enhancing Code Generation
|
10 |
|
11 |
<p align="center">
|