(lr)
| 111 | dataset_test = get_data('test', cifar_classnum) |
| 112 | |
| 113 | def lr_func(lr): |
| 114 | if lr < 3e-5: |
| 115 | raise StopTraining() |
| 116 | return lr * 0.31 |
| 117 | return TrainConfig( |
| 118 | model=Model(cifar_classnum), |
| 119 | data=QueueInput(dataset_train), |
nothing calls this directly
no test coverage detected
searching dependent graphs…