Add library_name: transformers metadata (resolves PR #1 intent)
Summary
This PR adds the library_name: transformers metadata field to the model card, addressing the core improvement suggested in PR #1 (by
@nielsr
from HF Staff) which currently has merge conflicts.
Changes
Before:
```yaml
license: other
pipeline_tag: image-to-image
**After:**
```yaml
---
license: other
pipeline_tag: image-to-image
library_name: transformers
---
Why This Matters
Per HuggingFace documentation:
Required since August 2024: For model repos created after August 2024,
library_namemust be set explicitly. The auto-detection fromconfig.jsonis no longer applied.Enables "How to Use" Widget: Adding
library_name: transformersenables the automated usage documentation widget on the model page, making it easier for users to get started.Improves Discoverability: Users can now filter models by library at https://huggingface.co/models?library=transformers to find this model.
Related
- Resolves the intent of PR #1 which has merge conflicts
- Based on the "Quick Start with Transformers" section already present in the model card, confirming transformers compatibility
PR created programmatically using huggingface_hub Python library.