Text Classification
Transformers
Safetensors
English
distilbert
sentiment-analysis
text-embeddings-inference
Instructions to use Drocho/distilbert-sentiment with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Drocho/distilbert-sentiment with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Drocho/distilbert-sentiment")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Drocho/distilbert-sentiment") model = AutoModelForSequenceClassification.from_pretrained("Drocho/distilbert-sentiment") - Notebooks
- Google Colab
- Kaggle
File size: 307 Bytes
107297b 1d30c45 107297b | 1 2 3 4 5 6 7 8 9 10 11 | ---
language: en
tags:
- text-classification
- sentiment-analysis
pipeline_tag: text-classification
library_name: transformers
---
# DistilBERT Sentiment Analysis
Modelo fine-tuneado sobre `distilbert-base-uncased` para clasificación binaria de sentimientos (positivo/negativo) en textos multidominio. |