Text Classification
Transformers
Safetensors
English
deberta-v2
Generated from Trainer
subjectivity-detection
news
checkthat2025
mdeberta-v3
Instructions to use AIWizards/mdeberta-v3-base-subjectivity-sentiment-english with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AIWizards/mdeberta-v3-base-subjectivity-sentiment-english with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="AIWizards/mdeberta-v3-base-subjectivity-sentiment-english")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("AIWizards/mdeberta-v3-base-subjectivity-sentiment-english") model = AutoModel.from_pretrained("AIWizards/mdeberta-v3-base-subjectivity-sentiment-english") - Notebooks
- Google Colab
- Kaggle
Improve model card: Add pipeline tag, update license, and enrich content
#1
by nielsr HF Staff - opened
This PR significantly enhances the model card for mdeberta-v3-base-subjectivity-sentiment-english by:
- Adding
pipeline_tag: text-classificationto the metadata, which is crucial for model discoverability and proper integration with the Hugging Face Hub's UI and features. - Correcting the
licensefrommittocc-by-4.0, which is explicitly stated in the associated GitHub repository. - Adding more descriptive
tagssuch assubjectivity-detection,news,checkthat2025, andmdeberta-v3for improved searchability and categorization. - Correcting the paper link to ensure it uses the full
https://protocol. - Populating the "Model description", "Intended uses & limitations", and "Training and evaluation data" sections with detailed information extracted from the paper abstract and the project's GitHub README, providing a comprehensive overview.
- Adding a dedicated "Code" section with a direct link to the official GitHub repository for easy access to the source code and training scripts.
- Including a "How to use" section with a clear Python usage example for text classification with the
transformerslibrary. - Adding a "Citation" section with the correct BibTeX entry for the paper.
- Removing the auto-generated comment at the top of the content.
These updates aim to make the model card more informative, discoverable, and user-friendly.
MatteoFasulo changed pull request status to merged