(self, args)
| 19 | class ContrastTrainer(BaseTrainer): |
| 20 | """trainer for contrastive pretraining""" |
| 21 | def __init__(self, args): |
| 22 | super(ContrastTrainer, self).__init__(args) |
| 23 | |
| 24 | def logging(self, epoch, logs, lr): |
| 25 | """ logging to tensorboard |
nothing calls this directly
no outgoing calls
no test coverage detected