King-8/help-request-messages
Viewer β’ Updated β’ 100 β’ 23
How to use King-8/help-classifier with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="King-8/help-classifier") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("King-8/help-classifier")
model = AutoModelForSequenceClassification.from_pretrained("King-8/help-classifier")This model is a fine-tuned version of distilbert-base-uncased on the "King-8/help-request-messages" dataset. It achieves the following results on the evaluation set:
This model is a fine-tuned text classification model designed to identify the type of help a user needs within the Coding in Color (CIC) ecosystem.
It enables AI systems to understand user challenges and provide structured support.
distilbert-base-uncasedpredict("I'm stuck on my project and don't know what to do")
Output:
{
"type": "project_help",
"confidence": 0.82
}
This model is designed to be integrated into:
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 1.3887 | 1.0 | 9 | 1.4495 |
| 1.2613 | 2.0 | 18 | 1.3350 |
| 1.1704 | 3.0 | 27 | 1.3083 |
Base model
distilbert/distilbert-base-uncased