Spaces:
Runtime error
Runtime error
File size: 1,098 Bytes
8d6cd57 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
"""
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']
|