(file_path)
| 43 | |
| 44 | |
| 45 | def load_value_file(file_path): |
| 46 | with open(file_path, 'r') as input_file: |
| 47 | value = float(input_file.read().rstrip('\n\r')) |
| 48 | |
| 49 | return value |
| 50 | |
| 51 | |
| 52 | def calculate_accuracy(outputs, targets): |
no outgoing calls
no test coverage detected