Add pipeline tag and library name to model card
Browse filesThis PR improves the model card for VisCoder2-14B by adding essential metadata:
- `pipeline_tag: image-text-to-text`: This tag accurately reflects the model's multimodal capability of understanding visual context and text instructions to generate visualization code. This enhances discoverability on the Hugging Face Hub.
- `library_name: transformers`: The model's `config.json` indicates `Qwen2ForCausalLM` architecture and `transformers_version: 4.51.3`, confirming compatibility with the Hugging Face `transformers` library. Adding this will enable automated code snippets on the model page, simplifying usage for the community.
No sample usage is added as no explicit code snippet was found in the GitHub README. The existing arXiv paper link is retained as per guidelines.
|
@@ -1,13 +1,15 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
| 3 |
datasets:
|
| 4 |
- TIGER-Lab/VisCode-Multi-679K
|
| 5 |
language:
|
| 6 |
- en
|
| 7 |
-
|
| 8 |
-
- Qwen/Qwen2.5-Coder-14B-Instruct
|
| 9 |
tags:
|
| 10 |
- code
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
# VisCoder2-14B
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model:
|
| 3 |
+
- Qwen/Qwen2.5-Coder-14B-Instruct
|
| 4 |
datasets:
|
| 5 |
- TIGER-Lab/VisCode-Multi-679K
|
| 6 |
language:
|
| 7 |
- en
|
| 8 |
+
license: apache-2.0
|
|
|
|
| 9 |
tags:
|
| 10 |
- code
|
| 11 |
+
pipeline_tag: image-text-to-text
|
| 12 |
+
library_name: transformers
|
| 13 |
---
|
| 14 |
|
| 15 |
# VisCoder2-14B
|