Text Classification
Transformers
Safetensors
English
bert
sentiment
english
text-embeddings-inference
# 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")Quick Links
- Downloads last month
- 28
Model tree for ExecuteAutomation/bert-base-text-classification-model
Base model
google-bert/bert-base-uncased
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="ExecuteAutomation/bert-base-text-classification-model")