Improve model card: Add pipeline tag, library name, and paper metadata
#1
by
nielsr
HF Staff
- opened
This PR enhances the model card by:
- Adding
pipeline_tag: text-generation
to accurately reflect the model's primary function of generating responses and problem-solving strategies. This will improve model discoverability athttps://huggingface.co/models?pipeline_tag=text-generation
. - Adding
library_name: transformers
to enable the automated "how to use" widget on the model page, as evidence fortransformers
compatibility was found inconfig.json
(e.g.,"transformers_version": "4.51.0"
,"architectures": ["Qwen3ForCausalLM"]
) andtokenizer_config.json
("tokenizer_class": "Qwen2Tokenizer"
). - Adding
paper: 2508.19201
to link the model to its Hugging Face paper page. - Removing the "File information" section from the model card content, as this information is intended for context and not for public display in the README, as per guidelines.
Heng1999
changed pull request status to
merged