user6295018/checkin-quality-dataset
Viewer β’ Updated β’ 6.78k β’ 1
How to use user6295018/checkin-quality-classifier with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="user6295018/checkin-quality-classifier") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("user6295018/checkin-quality-classifier")
model = AutoModelForSequenceClassification.from_pretrained("user6295018/checkin-quality-classifier")The Bloom Check-in Quality Classifier is a fine-tuned DistilBERT model designed to analyze daily check-ins from the Coding in Color program and classify them into one of three categories:
This model powers Bloom AIβs productivity assistant, which helps students reflect on their daily work habits and communicate effectively.
distilbert-base-uncased["vague", "neutral", "descriptive"]from transformers import pipeline
classifier = pipeline("text-classification", model="user6295018/checkin-quality-classifier")
classifier("Had a really productive day working on my API and debugging the UI.")
# [{'label': 'descriptive', 'score': 0.94}]
Base model
distilbert/distilbert-base-uncased