Text Classification
Transformers
PyTorch
TensorBoard
distilbert
Generated from Trainer
text-embeddings-inference
Instructions to use autoevaluate/natural-language-inference-not-evaluated with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use autoevaluate/natural-language-inference-not-evaluated with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="autoevaluate/natural-language-inference-not-evaluated")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("autoevaluate/natural-language-inference-not-evaluated") model = AutoModelForSequenceClassification.from_pretrained("autoevaluate/natural-language-inference-not-evaluated") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Add base_model information to model
#3
by librarian-bot - opened
README.md
CHANGED
|
@@ -8,6 +8,7 @@ metrics:
|
|
| 8 |
- accuracy
|
| 9 |
- f1
|
| 10 |
duplicated_from: autoevaluate/natural-language-inference
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
|
| 8 |
- accuracy
|
| 9 |
- f1
|
| 10 |
duplicated_from: autoevaluate/natural-language-inference
|
| 11 |
+
base_model: distilbert-base-uncased
|
| 12 |
---
|
| 13 |
|
| 14 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|