Reader Studies¶
A reader study enables you to have a set of readers answer a set of questions about a set of images.
- Editors
You can add multiple editors to your reader study. An editor is someone who can edit the reader study settings, add other editors, add and remove readers, add images and edit questions.
- Readers
A user who can read this study, creating an answer for each question and image in the study.
- Cases
The set of images that will be used in the study.
- Hanging List
How the each image will be presented to the user as a set of hanging protocols. For instance, you might want to present two images side by side and have a reader answer a question about both, or overlay one image on another.
Creating a Reader Study¶
A ReaderStudy
can use any available Workstation
.
A WorkstationConfig
can also be used for the study to customise the default
appearance of the workstation.
Cases¶
Cases can be added to a reader study by adding Image
instances.
Multiple image formats are supported:
.mha
.mhd
with the accompanying.zraw
or.raw
file.tif
/.tiff
.jpg
/.jpeg
.png
3D/4D DICOM support is also available, though this is experimental and not guaranteed to work on all
.dcm
images.
Defining the Hanging List¶
When you upload a set of images you have the option to automatically generate the default hanging list. The default hanging list presents each reader with 1 image per protocol.
You are able to customise the hanging list in the study edit page. Here, you are able to assign multiple images and overlays to each protocol.
Available image ports are:
* main
* secondary
* tertiary
* quaternary
* quinary
* senary
* septenary
* octonary
* nonary
* denary
Overlays can be applied to the image ports by using the image-port name with
the suffix ‘-overlay’ (e.g. main-overlay
).
Questions¶
A Question
can be optional and the following answer_type
options are
available:
Heading (not answerable)
Bool
Single line text
Multiline text
The following annotation answer types are also available:
Distance measurement
Multiple distance measurements
2D bounding box
To use an annotation answer type you must also select the image port where the annotation will be made.
Adding Ground Truth¶
To monitor the performance of the readers you are able add ground truth to a reader study by uploading a csv file.
If ground truth has been added to a ReaderStudy
, any Answer
given by a
reader is evaluated by applying the scoring_function
chosen for the Question
.
The scores can then be compared on the leaderboard
. Statistics are also available
based on these scores: the average and total scores for each question as well
as for each case are displayed in the statistics
view.
- class grandchallenge.reader_studies.models.Answer(*args, **kwargs)[source]¶
An
Answer
can be provided to aQuestion
that is a part of aReaderStudy
.- Parameters:
id (UUIDField) – Primary key: Id
modified (DateTimeField) – Modified
created (DateTimeField) – Created
answer (JSONField) – Answer
is_ground_truth (BooleanField) – Is ground truth
score (FloatField) – Score
explanation (TextField) – Explanation
last_edit_duration (DurationField) – Last edit duration
total_edit_duration (DurationField) – Total edit duration
Relationship fields:
- Parameters:
creator (
ForeignKey
toUser
) – Creator (related name:answer
)question (
ForeignKey
toQuestion
) – Question (related name:answer
)display_set (
ForeignKey
toDisplaySet
) – Display set (related name:answers
)answer_image (
ForeignKey
toImage
) – Answer image (related name:answer
)
Reverse relationships:
- Parameters:
answeruserobjectpermission (Reverse
ForeignKey
fromAnswerUserObjectPermission
) – All answer user object permissions of this answer (related name ofcontent_object
)answergroupobjectpermission (Reverse
ForeignKey
fromAnswerGroupObjectPermission
) – All answer group object permissions of this answer (related name ofcontent_object
)
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶
- save(*args, **kwargs)[source]¶
Save the current instance. Override this in a subclass if you want to control the saving process.
The ‘force_insert’ and ‘force_update’ parameters can be used to insist that the “save” must be an SQL insert or update (or equivalent for non-SQL backends), respectively. Normally, they should not be set.
- save_without_historical_record(*args, **kwargs)¶
Save model without saving a historical record
Make sure you know what you’re doing before you use this method.
- class grandchallenge.reader_studies.models.AnswerGroupObjectPermission(id, permission, group, content_object)[source]¶
- Parameters:
id (AutoField) – Primary key: ID
Relationship fields:
- Parameters:
permission (
ForeignKey
toPermission
) – Permission (related name:answergroupobjectpermission
)group (
ForeignKey
toGroup
) – Group (related name:answergroupobjectpermission
)content_object (
ForeignKey
toAnswer
) – Content object (related name:answergroupobjectpermission
)
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶
- class grandchallenge.reader_studies.models.AnswerType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]¶
- class grandchallenge.reader_studies.models.AnswerUserObjectPermission(id, permission, user, content_object)[source]¶
- Parameters:
id (AutoField) – Primary key: ID
Relationship fields:
- Parameters:
permission (
ForeignKey
toPermission
) – Permission (related name:answeruserobjectpermission
)user (
ForeignKey
toUser
) – User (related name:answeruserobjectpermission
)content_object (
ForeignKey
toAnswer
) – Content object (related name:answeruserobjectpermission
)
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶
- class grandchallenge.reader_studies.models.CategoricalOption(id, question, title, default)[source]¶
- Parameters:
id (AutoField) – Primary key: ID
title (CharField) – Title
default (BooleanField) – Default
Relationship fields:
- Parameters:
question (
ForeignKey
toQuestion
) – Question (related name:options
)
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶
- class grandchallenge.reader_studies.models.DisplaySet(id, created, modified, reader_study, order, title)[source]¶
- Parameters:
id (UUIDField) – Primary key: Id
created (DateTimeField) – Created
modified (DateTimeField) – Modified
order (PositiveIntegerField) – Order
title (CharField) – Title
Relationship fields:
- Parameters:
reader_study (
ForeignKey
toReaderStudy
) – Reader study (related name:display_sets
)values (
ManyToManyField
toComponentInterfaceValue
) – Values (related name:display_sets
)
Reverse relationships:
- Parameters:
displaysetuserobjectpermission (Reverse
ForeignKey
fromDisplaySetUserObjectPermission
) – All display set user object permissions of this display set (related name ofcontent_object
)displaysetgroupobjectpermission (Reverse
ForeignKey
fromDisplaySetGroupObjectPermission
) – All display set group object permissions of this display set (related name ofcontent_object
)answers (Reverse
ForeignKey
fromAnswer
) – All answers of this display set (related name ofdisplay_set
)
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶
- workstation_url¶
- class grandchallenge.reader_studies.models.DisplaySetGroupObjectPermission(id, permission, group, content_object)[source]¶
- Parameters:
id (AutoField) – Primary key: ID
Relationship fields:
- Parameters:
permission (
ForeignKey
toPermission
) – Permission (related name:displaysetgroupobjectpermission
)group (
ForeignKey
toGroup
) – Group (related name:displaysetgroupobjectpermission
)content_object (
ForeignKey
toDisplaySet
) – Content object (related name:displaysetgroupobjectpermission
)
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶
- class grandchallenge.reader_studies.models.DisplaySetUserObjectPermission(id, permission, user, content_object)[source]¶
- Parameters:
id (AutoField) – Primary key: ID
Relationship fields:
- Parameters:
permission (
ForeignKey
toPermission
) – Permission (related name:displaysetuserobjectpermission
)user (
ForeignKey
toUser
) – User (related name:displaysetuserobjectpermission
)content_object (
ForeignKey
toDisplaySet
) – Content object (related name:displaysetuserobjectpermission
)
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶
- class grandchallenge.reader_studies.models.ImagePort(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]¶
- class grandchallenge.reader_studies.models.InteractiveAlgorithmChoices(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]¶
- class grandchallenge.reader_studies.models.OptionalHangingProtocolReaderStudy(id, reader_study, hanging_protocol)[source]¶
- Parameters:
id (AutoField) – Primary key: ID
Relationship fields:
- Parameters:
reader_study (
ForeignKey
toReaderStudy
) – Reader study (related name:optionalhangingprotocolreaderstudy
)hanging_protocol (
ForeignKey
toHangingProtocol
) – Hanging protocol (related name:optionalhangingprotocolreaderstudy
)
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶
- class grandchallenge.reader_studies.models.Question(id, created, modified, overlay_segments, look_up_table, reader_study, question_text, help_text, answer_type, image_port, default_annotation_color, required, direction, scoring_function, order, interface, widget, interactive_algorithm, answer_max_value, answer_min_value, answer_step_size, answer_min_length, answer_max_length, answer_match_pattern, empty_answer_confirmation, empty_answer_confirmation_label)[source]¶
- Parameters:
id (UUIDField) – Primary key: Id
created (DateTimeField) – Created
modified (DateTimeField) – Modified
overlay_segments (JSONField) – Overlay segments. The schema that defines how categories of values in the overlay images are differentiated.
question_text (TextField) – Question text
help_text (TextField) – Help text
answer_type (CharField) – Answer type
image_port (CharField) – Image port
default_annotation_color (HexColorField) – Default annotation color. Default color for displaying and creating annotations for this question
required (BooleanField) – Required
direction (CharField) – Direction
scoring_function (CharField) – Scoring function
order (PositiveSmallIntegerField) – Order
widget (CharField) – Widget
interactive_algorithm (CharField) – Interactive algorithm. Which interactive algorithm should be used for this question?
answer_max_value (SmallIntegerField) – Answer max value. Maximum value for answers of type Number. Can only be set in combination with the ‘Number input’ or ‘Number Range’ widgets.
answer_min_value (SmallIntegerField) – Answer min value. Minimum value for answers of type Number. Can only be set in combination with the ‘Number input’ or ‘Number Range’ widgets.
answer_step_size (DecimalField) – Answer step size. Step size for answers of type Number. Defaults to 1, allowing only integer values. Can only be set in combination with the ‘Number input’ or ‘Number Range’ widgets.
answer_min_length (PositiveSmallIntegerField) – Answer min length. Minimum length for answers of type Text. Can only be set in combination with the ‘Text Input’ or ‘Text Area’ widgets.
answer_max_length (PositiveSmallIntegerField) – Answer max length. Maximum length for answers of type Text. Can only be set in combination with the ‘Text Input’ or ‘Text Area’ widgets.
answer_match_pattern (RegexField) – Answer match pattern. Regular expression to match a pattern for answers of type Text. Can only be set in combination with the ‘Text Input’ or ‘Text Area’ widgets.
empty_answer_confirmation (BooleanField) – Empty answer confirmation. Require an explicit confirmation when saving an empty answer to this question.
empty_answer_confirmation_label (TextField) – Empty answer confirmation label. Label to show when confirming an empty answer.
Relationship fields:
- Parameters:
look_up_table (
ForeignKey
toLookUpTable
) – Look up table. The look-up table that is applied when an overlay image is first shown (related name:question
)reader_study (
ForeignKey
toReaderStudy
) – Reader study (related name:questions
)interface (
ForeignKey
toComponentInterface
) – Interface (related name:question
)
Reverse relationships:
- Parameters:
questionuserobjectpermission (Reverse
ForeignKey
fromQuestionUserObjectPermission
) – All question user object permissions of this question (related name ofcontent_object
)questiongroupobjectpermission (Reverse
ForeignKey
fromQuestionGroupObjectPermission
) – All question group object permissions of this question (related name ofcontent_object
)options (Reverse
ForeignKey
fromCategoricalOption
) – All options of this question (related name ofquestion
)answer (Reverse
ForeignKey
fromAnswer
) – All answers of this question (related name ofquestion
)
- class AnswerType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)¶
- class Direction(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]¶
- exception DoesNotExist¶
- class ImagePort(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)¶
- exception MultipleObjectsReturned¶
- class ScoringFunction(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]¶
- calculate_score(answer, ground_truth)[source]¶
Calculates the score for
answer
by applyingscoring_function
toanswer
andground_truth
.
- clean()[source]¶
Hook for doing any extra model-wide validation after clean() has been called on every field by self.clean_fields. Any ValidationError raised by this method will not be associated with a particular field; it will have a special-case association with the field defined by NON_FIELD_ERRORS.
- property empty_answer_value¶
Returns the answer value which is considered to be empty
- property is_fully_editable¶
True
if noAnswer
has been given for thisQuestion
.
- save(*args, **kwargs)[source]¶
Save the current instance. Override this in a subclass if you want to control the saving process.
The ‘force_insert’ and ‘force_update’ parameters can be used to insist that the “save” must be an SQL insert or update (or equivalent for non-SQL backends), respectively. Normally, they should not be set.
- class grandchallenge.reader_studies.models.QuestionGroupObjectPermission(id, permission, group, content_object)[source]¶
- Parameters:
id (AutoField) – Primary key: ID
Relationship fields:
- Parameters:
permission (
ForeignKey
toPermission
) – Permission (related name:questiongroupobjectpermission
)group (
ForeignKey
toGroup
) – Group (related name:questiongroupobjectpermission
)content_object (
ForeignKey
toQuestion
) – Content object (related name:questiongroupobjectpermission
)
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶
- class grandchallenge.reader_studies.models.QuestionUserObjectPermission(id, permission, user, content_object)[source]¶
- Parameters:
id (AutoField) – Primary key: ID
Relationship fields:
- Parameters:
permission (
ForeignKey
toPermission
) – Permission (related name:questionuserobjectpermission
)user (
ForeignKey
toUser
) – User (related name:questionuserobjectpermission
)content_object (
ForeignKey
toQuestion
) – Content object (related name:questionuserobjectpermission
)
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶
- class grandchallenge.reader_studies.models.QuestionWidgetKindChoices(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]¶
- class grandchallenge.reader_studies.models.ReaderStudy(*args, **kwargs)[source]¶
Reader Study model.
A reader study is a tool that allows users to have a set of readers answer a set of questions on a set of images (cases).
- Parameters:
title (CharField) – Title
description (TextField) – Description
slug (AutoSlugField) – Slug
id (UUIDField) – Primary key: Id
created (DateTimeField) – Created
modified (DateTimeField) – Modified
view_content (JSONField) – View content
public (BooleanField) – Public. Should this reader study be visible to all users on the overview page? This does not grant all users permission to read this study. Users will still need to be added to the study’s readers group in order to do that.
access_request_handling (CharField) – Access request handling. How would you like to handle access requests?
logo (JPEGField) – Logo
social_image (JPEGField) – Social image. An image for this reader study which is displayed when you post the link on social media. Should have a resolution of 640x320 px (1280x640 px for best display).
help_text_markdown (TextField) – Help text markdown
shuffle_hanging_list (BooleanField) – Shuffle hanging list
is_educational (BooleanField) – Is educational. If checked, readers get the option to verify their answers against the uploaded ground truth. This also means that the uploaded ground truth will be readily available to the readers.
instant_verification (BooleanField) – Instant verification. In an educational reader study, enabling this setting will allow the user to go through the reader study faster. The ‘Save and continue’ button will be replaced by a ‘Verify and continue’ button which will show the answer verification pop up and allow the user to save and go to the next case upon dismissal.
case_text (JSONField) – Case text
allow_answer_modification (BooleanField) – Allow answer modification. If true, readers are allowed to modify their answers for a case by navigating back to previous cases. ‘Allow case navigation’ must be checked as well to enable this setting.
allow_case_navigation (BooleanField) – Allow case navigation. If true, readers are allowed to navigate back and forth between cases in this reader study.
allow_show_all_annotations (BooleanField) – Allow show all annotations. If true, readers are allowed to show/hide all annotations for a case.
roll_over_answers_for_n_cases (PositiveSmallIntegerField) – Roll over answers for n cases. The number of cases for which answers should roll over. It can be used for repeated readings with slightly different hangings. For instance, if set to 1. Case 2 will start with the answers from case 1; whereas case 3 starts anew but its answers will roll over to case 4. Setting it to 0 (default) means answers will not roll over.
Relationship fields:
- Parameters:
hanging_protocol (
ForeignKey
toHangingProtocol
) – Hanging protocol. Indicate which Component Interfaces need to be displayed in which image port. E.g. {“main”: [“interface1”]}. The first item in the list of interfaces will be the main image in the image port. The first overlay type interface thereafter will be rendered as an overlay. For now, any other items will be ignored by the viewer. (related name:readerstudy
)editors_group (
OneToOneField
toGroup
) – Editors group (related name:editors_of_readerstudy
)readers_group (
OneToOneField
toGroup
) – Readers group (related name:readers_of_readerstudy
)workstation (
ForeignKey
toWorkstation
) – Workstation (related name:readerstudy
)workstation_config (
ForeignKey
toWorkstationConfig
) – Workstation config (related name:readerstudy
)workstation_sessions (
ManyToManyField
toSession
) – Workstation sessions (related name:reader_studies
)optional_hanging_protocols (
ManyToManyField
toHangingProtocol
) – Optional hanging protocols. Optional alternative hanging protocols for this reader study (related name:optional_for_reader_study
)publications (
ManyToManyField
toPublication
) – Publications. The publications associated with this reader study (related name:readerstudy
)modalities (
ManyToManyField
toImagingModality
) – Modalities. The imaging modalities contained in this reader study (related name:readerstudy
)structures (
ManyToManyField
toBodyStructure
) – Structures. The structures contained in this reader study (related name:readerstudy
)organizations (
ManyToManyField
toOrganization
) – Organizations. The organizations associated with this reader study (related name:readerstudies
)actor_actions (
GenericRelation
toAction
) – Actor actions (related name:actions_with_reader_studies_readerstudy_as_actor
)target_actions (
GenericRelation
toAction
) – Target actions (related name:actions_with_reader_studies_readerstudy_as_target
)action_object_actions (
GenericRelation
toAction
) – Action object actions (related name:actions_with_reader_studies_readerstudy_as_action_object
)
Reverse relationships:
- Parameters:
readerstudyuserobjectpermission (Reverse
ForeignKey
fromReaderStudyUserObjectPermission
) – All reader study user object permissions of this reader study (related name ofcontent_object
)readerstudygroupobjectpermission (Reverse
ForeignKey
fromReaderStudyGroupObjectPermission
) – All reader study group object permissions of this reader study (related name ofcontent_object
)workstationsessionreaderstudy (Reverse
ForeignKey
fromWorkstationSessionReaderStudy
) – All workstation session reader studys of this reader study (related name ofreader_study
)display_sets (Reverse
ForeignKey
fromDisplaySet
) – All display sets of this reader study (related name ofreader_study
)questions (Reverse
ForeignKey
fromQuestion
) – All questions of this reader study (related name ofreader_study
)readerstudypermissionrequest (Reverse
ForeignKey
fromReaderStudyPermissionRequest
) – All reader study permission requests of this reader study (related name ofreader_study
)optionalhangingprotocolreaderstudy (Reverse
ForeignKey
fromOptionalHangingProtocolReaderStudy
) – All optional hanging protocol reader studys of this reader study (related name ofreader_study
)
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶
- answerable_question_count¶
- answerable_questions¶
All questions for this
ReaderStudy
except those with answer type
- clean()[source]¶
Hook for doing any extra model-wide validation after clean() has been called on every field by self.clean_fields. Any ValidationError raised by this method will not be associated with a particular field; it will have a special-case association with the field defined by NON_FIELD_ERRORS.
- get_progress_for_user(user)[source]¶
Returns the percentage of completed hangings and questions for
user
.
- property image_groups¶
Names of the images as they are grouped in the hanging list.
- leaderboard¶
- save(*args, **kwargs)[source]¶
Save the current instance. Override this in a subclass if you want to control the saving process.
The ‘force_insert’ and ‘force_update’ parameters can be used to insist that the “save” must be an SQL insert or update (or equivalent for non-SQL backends), respectively. Normally, they should not be set.
- scores_by_user¶
- statistics¶
- study_image_names¶
- class grandchallenge.reader_studies.models.ReaderStudyGroupObjectPermission(id, permission, group, content_object)[source]¶
- Parameters:
id (AutoField) – Primary key: ID
Relationship fields:
- Parameters:
permission (
ForeignKey
toPermission
) – Permission (related name:readerstudygroupobjectpermission
)group (
ForeignKey
toGroup
) – Group (related name:readerstudygroupobjectpermission
)content_object (
ForeignKey
toReaderStudy
) – Content object (related name:readerstudygroupobjectpermission
)
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶
- class grandchallenge.reader_studies.models.ReaderStudyPermissionRequest(*args, **kwargs)[source]¶
When a user wants to read a reader study, editors have the option of reviewing each user before accepting or rejecting them. This class records the needed info for that.
- Parameters:
id (AutoField) – Primary key: ID
created (DateTimeField) – Created
changed (DateTimeField) – Changed
status (CharField) – Status
rejection_text (TextField) – Rejection text. The text that will be sent to the user with the reason for their rejection.
Relationship fields:
- Parameters:
user (
ForeignKey
toUser
) – User. which user requested to participate? (related name:readerstudypermissionrequest
)reader_study (
ForeignKey
toReaderStudy
) – Reader study. To which reader study has the user requested access? (related name:readerstudypermissionrequest
)actor_actions (
GenericRelation
toAction
) – Actor actions (related name:actions_with_reader_studies_readerstudypermissionrequest_as_actor
)target_actions (
GenericRelation
toAction
) – Target actions (related name:actions_with_reader_studies_readerstudypermissionrequest_as_target
)action_object_actions (
GenericRelation
toAction
) – Action object actions (related name:actions_with_reader_studies_readerstudypermissionrequest_as_action_object
)
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶
- save(*args, **kwargs)[source]¶
Save the current instance. Override this in a subclass if you want to control the saving process.
The ‘force_insert’ and ‘force_update’ parameters can be used to insist that the “save” must be an SQL insert or update (or equivalent for non-SQL backends), respectively. Normally, they should not be set.
- class grandchallenge.reader_studies.models.ReaderStudyUserObjectPermission(id, permission, user, content_object)[source]¶
- Parameters:
id (AutoField) – Primary key: ID
Relationship fields:
- Parameters:
permission (
ForeignKey
toPermission
) – Permission (related name:readerstudyuserobjectpermission
)user (
ForeignKey
toUser
) – User (related name:readerstudyuserobjectpermission
)content_object (
ForeignKey
toReaderStudy
) – Content object (related name:readerstudyuserobjectpermission
)
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶
- class grandchallenge.reader_studies.models.WorkstationSessionReaderStudy(id, reader_study, workstation_session)[source]¶
- Parameters:
id (AutoField) – Primary key: ID
Relationship fields:
- Parameters:
reader_study (
ForeignKey
toReaderStudy
) – Reader study (related name:workstationsessionreaderstudy
)workstation_session (
ForeignKey
toSession
) – Workstation session (related name:workstationsessionreaderstudy
)
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶