(acc, rec)
| 634 | |
| 635 | |
| 636 | def F1(acc, rec): |
| 637 | if (acc + rec) == 0: |
| 638 | return 0 |
| 639 | return (2. * acc * rec) / (acc + rec) |
| 640 | |
| 641 | |
| 642 | def get_scores(count, pred_total, label_total): |
nothing calls this directly
no outgoing calls
no test coverage detected