Thank you for maintaining this library! It has been super helpful!
I was testing individualized BKT by setting multilearn to student_id. My understanding is this model setup will estimate separate learn rates for each student. Therefore, when we split data into train and test at the student level (i.e., train and test include data for different students), we cannot predict/evaluate the trained model with the test data simply because we have no estimated learn rate parameters for students in the test data set. This is actually the error I got "Learn rate x not fitted".
However, when I use model.crossvalidate with multilearn set to student_id, I DID get an auc metric without any errors. I thought the default crossvalidation is also splitting train and test data at the student level. So, I would expect such crossvalidation to fail due to the same reason above.
Can you help me understand what happened?
Thank you!