Instructions to use I77/question_classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use I77/question_classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="I77/question_classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("I77/question_classifier") model = AutoModelForSequenceClassification.from_pretrained("I77/question_classifier") - Notebooks
- Google Colab
- Kaggle
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
| 2 |
|
| 3 |
This model classifies questions as logically correct or incorrect.
|
| 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
### Example inference
|
| 6 |
|
| 7 |
```python
|
|
|
|
| 2 |
|
| 3 |
This model classifies questions as logically correct or incorrect.
|
| 4 |
|
| 5 |
+
1 - logically correct
|
| 6 |
+
|
| 7 |
+
0 - logically incorrect
|
| 8 |
+
|
| 9 |
### Example inference
|
| 10 |
|
| 11 |
```python
|