Hey @lccasagrande,
You have done something like this while creating dataset.
df['skill_with_answer'] = df['skill'] * 2 + df['correct']
so when we want to predict the probability of getting a question right based on past answers, where we don't have "correct" column. How we would predict?
Hey @lccasagrande, You have done something like this while creating dataset. df['skill_with_answer'] = df['skill'] * 2 + df['correct']
so when we want to predict the probability of getting a question right based on past answers, where we don't have "correct" column. How we would predict?
I'm a bit confused.