Instructions to use Atharva192003/zero-shot-classfier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Atharva192003/zero-shot-classfier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("zero-shot-classification", model="Atharva192003/zero-shot-classfier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Atharva192003/zero-shot-classfier") model = AutoModelForSequenceClassification.from_pretrained("Atharva192003/zero-shot-classfier") - Notebooks
- Google Colab
- Kaggle
Commit ·
eb67a11
1
Parent(s): 7dbe3e5
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,5 +5,5 @@ language:
|
|
| 5 |
metrics:
|
| 6 |
- character
|
| 7 |
pipeline_tag: zero-shot-classification
|
| 8 |
-
library_name:
|
| 9 |
---
|
|
|
|
| 5 |
metrics:
|
| 6 |
- character
|
| 7 |
pipeline_tag: zero-shot-classification
|
| 8 |
+
library_name: transformers
|
| 9 |
---
|