()
| 3096 | |
| 3097 | |
| 3098 | def generate_input_labels(): |
| 3099 | labels = [] |
| 3100 | modalities = mode.modalities[mode.mode] |
| 3101 | pos = 0 |
| 3102 | total = len(modalities) |
| 3103 | for m in modalities: |
| 3104 | if m != 'arithmetic': |
| 3105 | |
| 3106 | labels.append(FeedbackLabel(m, pos, total)) |
| 3107 | pos += 1 |
| 3108 | return labels |
| 3109 | |
| 3110 | class ArithmeticAnswerLabel: |
| 3111 | def __init__(self): |
no test coverage detected