vitaliykinakh's picture
Initial
8d6cd57
raw
history blame
1.1 kB
"""
This file contains question and options for the manual labeling
"""
q1 = 'Is the object a smooth galaxy, a galaxy with features/disk or a star?'
q1_options = ['Smooth', 'Features or disk', 'Star or artifact']
q2 = 'Is it edge-on? '
q2_options = ['Yes', 'No']
q3 = 'Is there a bar?'
q3_options = ['Yes', 'No']
q4 = 'Is there a spiral pattern?'
q4_options = ['Yes', 'No']
q5 = 'How prominent is the central bulge?'
q5_options = ['No bulge', 'Just noticeable', 'Obvious', 'Dominant']
q6 = 'Is there anything "odd" about the galaxy?'
q6_options = ['Yes', 'No']
q7 = 'How round is the smooth galaxy?'
q7_options = ['Completely round', 'In between', 'Cigar-shaped']
q8 = 'What is the odd feature?'
q8_options = ['Ring', 'Lens or are', 'Disturbed', 'Irregular', 'Other', 'Merger', 'Dust lane']
q9 = 'What shape is the bulge in the edge-on galaxy?'
q9_options = ['Rounded', 'Boxy', 'No bulge']
q10 = 'How tightly wound are the spiral arms?'
q10_options = ['Tight', 'Medium', 'Loose']
q11 = 'How many spiral arms are there?'
q11_options = ['1', '2', '3', '4', 'more than four', 'can`t tell']