๐Ÿง  CommonLit Summary Scoring Model

This model was trained using the CommonLit Evaluate Student Summaries dataset on Kaggle.
It predicts two scores for student-written summaries:

  • content โ†’ Idea coverage quality
  • wording โ†’ Clarity and phrasing quality

Built with:

  • TF-IDF vectorizer
  • Ridge Regression (scikit-learn)
  • MultiOutputRegressor wrapper

Example usage:

from joblib import load

model = load("ridge_model.pkl")
tfidf = load("tfidf_vectorizer.pkl")
summary = "This text discusses..."
X = tfidf.transform([summary])
pred = model.predict(X)
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support