504edaa9e9515ad43e5fbcdbf6024bdab572c7c5,app/grandchallenge/annotations/models.py,ImageQualityAnnotation,ImageQualityAnnotation_1,#,254

Before Change


    QUALITY_02 = "02"
    QUALITY_10 = "10"
    QUALITY_11 = "11"
    QUALITY_12 = "12"
    QUALITY_2 = "2"
    QUALITY_CHOICES = (
        (QUALITY_00, "Cannot grade, bad photo"),
        (QUALITY_01, "Cannot grade, cataract"),
        (QUALITY_02, "Cannot grade, poor mydriasis"),
        (QUALITY_10, "Fair, bad photo"),
        (QUALITY_11, "Fair, cataract"),
        (QUALITY_12, "Fair, poor mydriasis"),
        (QUALITY_2, "Good"),
    )

    quality = models.CharField(
        max_length=2,
        choices=QUALITY_CHOICES,

After Change


        choices=QUALITY_CHOICES,
        help_text="How do you rate the quality of the image?",
    )
    quality_reason = models.CharField(
        max_length=2,
        choices=QUALITY_REASON_CHOICES,
        null=True,
        blank=True,
        help_text="If the quality is not good, why not?",
    )


class ImagePathologyAnnotation(AbstractImageAnnotationModel):
    
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 7

Instances


Project Name: comic/grand-challenge.org
Commit Name: 504edaa9e9515ad43e5fbcdbf6024bdab572c7c5
Time: 2019-06-07
Author: harm.van.zeeland@gmail.com
File Name: app/grandchallenge/annotations/models.py
Class Name: ImageQualityAnnotation
Method Name: ImageQualityAnnotation_1


Project Name: comic/grand-challenge.org
Commit Name: 62259478def79db9042d87c0fa652f04be5098ec
Time: 2021-03-01
Author: chrisvanrun@users.noreply.github.com
File Name: app/grandchallenge/workstation_configs/models.py
Class Name: WorkstationConfig
Method Name: WorkstationConfig_1


Project Name: comic/grand-challenge.org
Commit Name: 0b19a706e8bbff0e6ba1cfc23c9febc7ff65ff75
Time: 2019-07-23
Author: code@jmsmkn.com
File Name: app/grandchallenge/reader_studies/models.py
Class Name: Question
Method Name: Question_1