(self, args)
| 14 | class LinearTrainer(BaseTrainer): |
| 15 | """trainer for Linear evaluation""" |
| 16 | def __init__(self, args): |
| 17 | super(LinearTrainer, self).__init__(args) |
| 18 | |
| 19 | def logging(self, epoch, logs, lr=None, train=True): |
| 20 | """ logging to tensorboard |
nothing calls this directly
no outgoing calls
no test coverage detected