Text Classification
Transformers
Safetensors
English
bert
sentiment
english
text-embeddings-inference
Instructions to use ExecuteAutomation/bert-base-text-classification-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ExecuteAutomation/bert-base-text-classification-model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="ExecuteAutomation/bert-base-text-classification-model")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("ExecuteAutomation/bert-base-text-classification-model") model = AutoModelForSequenceClassification.from_pretrained("ExecuteAutomation/bert-base-text-classification-model") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,6 +13,7 @@ pipeline_tag: text-classification
|
|
| 13 |
tags:
|
| 14 |
- sentiment
|
| 15 |
- english
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
## Bert-base-text-classification-model
|
|
|
|
| 13 |
tags:
|
| 14 |
- sentiment
|
| 15 |
- english
|
| 16 |
+
library_name: transformers
|
| 17 |
---
|
| 18 |
|
| 19 |
## Bert-base-text-classification-model
|