Downloads · 30 days
0
limbo23/cs1684models
cs1684models is a machine learning model from limbo23. Use it for the machine learning task on the model card, and read the license before you ship it in a product.
- Path: fever/run1/ - Models: bestmodel/, bestmodelcalibrated/, finalmodel/ - Training logs: fever/run1/trainingresults.txt
Downloads · 30 days
0
Access
Public
Updated Nov 8, 2025
Repo size
5.1 GB
Likes
0
Public
Click a slice to open those files.
.safetensors6.6 GB · 89%
From the Hugging Face model README
fever/run1/best_model/, best_model_calibrated/, final_model/fever/run1/training_results.txtimdb/run1/best_model/, best_model_calibrated/, final_model/imdb/run1/training_results.txtjigsaw/run1/best_model/, best_model_calibrated/, final_model/jigsaw/run1/training_results.txtfrom models.baseline_models import SupervisedClassifier
# IMDb Sentiment Analysis
model = SupervisedClassifier(task_type="sentiment", num_labels=2, multilabel=False)
model.load_trained_model("limbo23/cs1684models",
subfolder="imdb/run1/best_model_calibrated")
# FEVER Fact Verification
model = SupervisedClassifier(task_type="fact_verification", num_labels=3, multilabel=False)
model.load_trained_model("limbo23/cs1684models",
subfolder="fever/run1/best_model_calibrated")
# Jigsaw Toxicity Detection
model = SupervisedClassifier(task_type="toxicity", num_labels=2, multilabel=False)
model.load_trained_model("limbo23/cs1684models",
subfolder="jigsaw/run1/best_model_calibrated")
# Make predictions
result = model.predict_single("Your text here")
print(f"Label: {result['label']}, Confidence: {result['confidence']:.4f}")
Each dataset has three model versions:
best_model_calibrated/ - Best validation performance with temperature scalingbest_model/ - Best validation performance without calibrationfinal_model/ - Model from final training epoch# Use calibrated model
model.load_trained_model("limbo23/cs1684models", subfolder="imdb/run1/best_model_calibrated")
# Or use uncalibrated
model.load_trained_model("limbo23/cs1684models", subfolder="imdb/run1/best_model")
| Dataset | Task | Labels | Samples |
|---|---|---|---|
| IMDb | Sentiment Analysis | 2 (negative/positive) | ~25K |
| FEVER | Fact Verification | 3 (refutes/nei/supports) | ~145K |
| Jigsaw | Toxicity Detection | 2 (toxic/non-toxic) | ~160K |