(self, pred, label)
| 13 | |
| 14 | @classmethod |
| 15 | def bottom_diff(self, pred, label): |
| 16 | diff = np.zeros_like(pred) |
| 17 | diff[0] = 2 * (pred[0] - label) |
| 18 | return diff |
| 19 | |
| 20 | class Primes: |
| 21 | def __init__(self): |
nothing calls this directly
no outgoing calls
no test coverage detected