Instructions to use execbat/bert-finetuned-sst2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use execbat/bert-finetuned-sst2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="execbat/bert-finetuned-sst2")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("execbat/bert-finetuned-sst2") model = AutoModelForSequenceClassification.from_pretrained("execbat/bert-finetuned-sst2") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,6 +5,8 @@ base_model: bert-base-uncased
|
|
| 5 |
tags:
|
| 6 |
- generated_from_trainer
|
| 7 |
- text-classification
|
|
|
|
|
|
|
| 8 |
metrics:
|
| 9 |
- accuracy
|
| 10 |
model-index:
|
|
|
|
| 5 |
tags:
|
| 6 |
- generated_from_trainer
|
| 7 |
- text-classification
|
| 8 |
+
- transformers
|
| 9 |
+
- bert
|
| 10 |
metrics:
|
| 11 |
- accuracy
|
| 12 |
model-index:
|