Instructions to use phanerozoic/BERT-Question-Classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use phanerozoic/BERT-Question-Classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="phanerozoic/BERT-Question-Classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("phanerozoic/BERT-Question-Classifier") model = AutoModelForSequenceClassification.from_pretrained("phanerozoic/BERT-Question-Classifier") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -8,7 +8,7 @@ tags:
|
|
| 8 |
- trec
|
| 9 |
widget:
|
| 10 |
- text: |
|
| 11 |
-
Enter your
|
| 12 |
example_title: "Classify Question Type"
|
| 13 |
---
|
| 14 |
|
|
|
|
| 8 |
- trec
|
| 9 |
widget:
|
| 10 |
- text: |
|
| 11 |
+
Enter your text to classify its content.
|
| 12 |
example_title: "Classify Question Type"
|
| 13 |
---
|
| 14 |
|