(predicted_sequences, ground_truths)
| 3 | |
| 4 | |
| 5 | def eval(predicted_sequences, ground_truths): |
| 6 | accuracy = caculate_accuracy(predicted_sequences, ground_truths) |
| 7 | evaluation_result = {"accuracy": accuracy} |
| 8 | return evaluation_result |
nothing calls this directly
no test coverage detected