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
| 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. |