Instructions to use Mozilla/content-multilabel-iab-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Mozilla/content-multilabel-iab-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Mozilla/content-multilabel-iab-classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Mozilla/content-multilabel-iab-classifier") model = AutoModelForSequenceClassification.from_pretrained("Mozilla/content-multilabel-iab-classifier") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -57,7 +57,8 @@ Key Configuration:
|
|
| 57 |
📦 Model Sources:
|
| 58 |
|
| 59 |
Repository: Mozilla Content Categorization Project
|
| 60 |
-
Demo (optional):
|
|
|
|
| 61 |
|
| 62 |
📥 Usage:
|
| 63 |
```
|
|
|
|
| 57 |
📦 Model Sources:
|
| 58 |
|
| 59 |
Repository: Mozilla Content Categorization Project
|
| 60 |
+
Demo (optional): [Hugging Face Space](https://huggingface.co/spaces/chidamnat2002/iab_content_classifier)
|
| 61 |
+
|
| 62 |
|
| 63 |
📥 Usage:
|
| 64 |
```
|