-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add quiz xAPI profile statements #270
base: main
Are you sure you want to change the base?
Conversation
ef77c28
to
e4d9e91
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"session", | ||
), | ||
ConversionItem( | ||
"context__contextActivites__definition__type", "context__referer" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the referer in the context field? I can't find it in the edX spec (or in our edX models), it seems to be in the BaseEdxModel alongside (and not inside) the context field.
None, | ||
lambda event: event["event"]["success"] == "correct", | ||
), | ||
ConversionItem("result__score__max", "event__maxgrade"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ConversionItem("result__score__max", "event__maxgrade"), | |
ConversionItem("result__score__max", "event__max_grade"), |
e4d9e91
to
c676419
Compare
753179b
to
e077c2e
Compare
e077c2e
to
0d1a748
Compare
xAPI quiz profile is being developed in the frame of Gaia-X working group. The pydantic modelisation of this profile is implemented for the mandatory statement templates.
EdX problem interaction statements can be converted into xAPI quiz statements templates. For now, only the converter for `problem_check` is implemented.
0d1a748
to
dd7b39e
Compare
Purpose
xAPI assessment profile is being developed in the frame of Gaia-X working group. The pydantic modelisation of this profile is implemented for the mandatory statement templates.
Problem_interactions events from EdX are converted to xAPI assessment profile templates.
Proposal