Instructions to use Sta-1/Job-Classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Sta-1/Job-Classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("zero-shot-classification", model="Sta-1/Job-Classifier", trust_remote_code=True)# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Sta-1/Job-Classifier", trust_remote_code=True) model = AutoModelForSequenceClassification.from_pretrained("Sta-1/Job-Classifier", trust_remote_code=True) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
library_name: transformers
|
| 3 |
pipeline_tag: zero-shot-classification
|
| 4 |
tags:
|
| 5 |
-
-
|
| 6 |
---
|
| 7 |
|
| 8 |
# Model Card for Model ID
|
|
|
|
| 2 |
library_name: transformers
|
| 3 |
pipeline_tag: zero-shot-classification
|
| 4 |
tags:
|
| 5 |
+
- zero-shot-classification
|
| 6 |
---
|
| 7 |
|
| 8 |
# Model Card for Model ID
|