π¦ PigeonAIModel1
This is a simple text classification model trained to detect whether an input sentence is positive (good) or negative (bad), based on labeled examples of common good and bad expressions.
π§ How it works
- Fine-tuned on a synthetic dataset of 1000 labeled sentences.
- Uses
distilbert-base-uncasedarchitecture from Hugging Face Transformers.
π§ͺ Example Usage
from transformers import pipeline
classifier = pipeline("text-classification", model="tapigeon/PigeonAIModel1")
print(classifier("You are amazing!")) # β Good
print(classifier("You're so stupid!")) # β Bad
- Downloads last month
- 1