CoolFace
Modelpublic

yoon-eunbin/distilbert-emotion-classification-model

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes15downloads
Model Card

๐Ÿ”Ž Summary

emotion classification model with distilbert

๐Ÿš€ Quick start (Python)

Installation

bash
pip install transformers torch

Basic Usage

python
from transformers import pipeline

classifier = pipeline("text-classification", model="yoon-eunbin/distilbert-emotion-classification-model")
result = classifier("I'm so happy today!")
print(result)