Add `library_name: transformers` to metadata
#4
by
nielsr
HF Staff
- opened
This PR improves the model card by adding library_name: transformers
to the metadata.
This addition is based on the model's config.json
("architectures": ["T5ForConditionalGeneration"]
, "model_type": "t5"
, "transformers_version"
) and tokenizer_config.json
("tokenizer_class": "T5Tokenizer"
) files, which indicate compatibility with the Hugging Face Transformers library.
Adding this metadata will:
- Enable an automated "Use in Transformers" code snippet directly on the model page.
- Improve model discoverability for users filtering by library.