CoolFace
Modelpublic

user6295018/checkin-quality-classifier

sourceHugging Faceapache-2.0updated 11mo agoView on Hugging Face
0likes8downloads
Model Card

๐ŸŒธ Bloom Check-in 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:

  • โ€”Descriptive โ€” Clear, thoughtful, and specific check-ins
  • โ€”Neutral โ€” Somewhat informative but missing depth
  • โ€”Vague โ€” Minimal or unclear updates

This model powers Bloom AIโ€™s productivity assistant, which helps students reflect on their daily work habits and communicate effectively.


๐Ÿง  Model Details

  • โ€”Base model: distilbert-base-uncased
  • โ€”Framework: ๐Ÿค— Transformers + PyTorch
  • โ€”Language: English
  • โ€”Task: Text Classification
  • โ€”Labels: ["vague", "neutral", "descriptive"]

๐Ÿ“Š Training Information

  • โ€”Dataset: 1,200+ anonymized check-ins from the Coding in Color program
  • โ€”Split: 80% train / 10% validation / 10% test
  • โ€”Epochs: 3
  • โ€”Batch size: 16
  • โ€”Optimizer: AdamW
  • โ€”Learning rate: 5e-5

โš™๏ธ Inference Example

python
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}]