(epoch)
| 65 | raise ValueError('Not a valid optimizer') |
| 66 | |
| 67 | def poly_schd(epoch): |
| 68 | return math.pow(1 - epoch / args.max_epoch, args.poly_exp) |
| 69 | |
| 70 | def poly2_schd(epoch): |
| 71 | if epoch < args.poly_step: |
nothing calls this directly
no outgoing calls
no test coverage detected