Instructions to use textattack/bert-base-uncased-snli with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use textattack/bert-base-uncased-snli with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="textattack/bert-base-uncased-snli")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("textattack/bert-base-uncased-snli") model = AutoModelForSequenceClassification.from_pretrained("textattack/bert-base-uncased-snli") - Notebooks
- Google Colab
- Kaggle
Update eval_results.txt
Browse files- eval_results.txt +4 -0
eval_results.txt
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
eval_accuracy = 0.9048249185667753
|
| 2 |
+
eval_loss = 0.3065845295544168
|
| 3 |
+
global_step = 51504
|
| 4 |
+
loss = 0.17053774699018895
|