Allow partial credit in choices questions#1475
Merged
Conversation
Copilot
AI
changed the title
[WIP] Update ChoiceMode to allow partial credit in choices questions
Allow partial credit in choices questions
Apr 10, 2026
b41213c to
41e9213
Compare
59f98ac to
2a8bf44
Compare
…rectness field, update scoring and validation Agent-Logs-Url: https://github.com/inducer/relate/sessions/f5b680e3-c454-4690-afd9-3c6f11c0db9d Co-authored-by: inducer <352067+inducer@users.noreply.github.com>
2a8bf44 to
ec914e4
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ChoiceQuestionandInlineMultiQuestionpreviously supported only binary correct/incorrect choices. This adds acorrectnessfield toChoiceDescenabling fractional credit per choice.Data model
ChoiceMode.CORRECT/INCORRECTwith a unifiedSTANDARDmode plus acorrectness: PointCountfield (default0.0)~CORRECT~remains backward-compatible (setscorrectness=1.0); no-prefix choices continue to meancorrectness=0.0Scoring changes
ChoiceQuestion:grade()now returnschoice.correctnessdirectly instead of binary 0/1;page_correct_answer()displays the highest-correctness choiceChoicesAnswer(InlineMultiQuestion):get_correctness()returnschoice.correctnessdirectlyValidation
ChoiceQuestion: at least one choice must havecorrectness > 0MultipleChoiceQuestion: partial credit (correctness ∉ {0, 1}) is disallowed via a new model validatorTests
ChoiceQuestionPythonClassFakeRepo-based validation tests confirming partial-credit pages validate successfully and that invalid configurations (all-zeroChoiceQuestion, partial-creditMultipleChoiceQuestion) raiseValidationError