You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CAPQuiz rates questions. For question types such as STACK the question is parameterised, and a question is really a class of random instances. This has a couple of potentially negative consequences.
All instances of the same question have the same rating, even if they may have different difficulty.
When parameterised questions are used together with unique questions, instances of the parameterised question come up less frequently than instances of the unique question.
There is no obvious and clear-cut solution to this problem, and every solution is likely to have negative side-effects, but alternatives should be identified and discussed. In particular,
is it possible to rate instances instead of questions? Could this be made optional when setting up the question set?
is it possible to take the number of instances into account in the matchmaking routine, so that questions with many instances come up with higher probability?
The text was updated successfully, but these errors were encountered:
This only affects a narrow use case. With CAPQuiz we normally want a large number of variants, which creates performance issues with STACK. We have therefore resorted to instantiating questions on the fly, with nothing pregenerated, and in this case instances cannot be graded.
CAPQuiz rates questions. For question types such as STACK the question is parameterised, and a question is really a class of random instances. This has a couple of potentially negative consequences.
There is no obvious and clear-cut solution to this problem, and every solution is likely to have negative side-effects, but alternatives should be identified and discussed. In particular,
The text was updated successfully, but these errors were encountered: