common/pose_network.py [186:192]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def save_weights(self, model_file):
        print('Saving weights to', model_file)
        torch.save(self.model.state_dict(), model_file)
        
    def load_weights(self, model_file):
        print('Loading weights from', model_file)
        self.model.load_state_dict(torch.load(model_file, map_location=lambda storage, loc: storage))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



long_term/pace_network.py [212:218]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def save_weights(self, model_file):
        print('Saving weights to', model_file)
        torch.save(self.model.state_dict(), model_file)
        
    def load_weights(self, model_file):
        print('Loading weights from', model_file)
        self.model.load_state_dict(torch.load(model_file, map_location=lambda storage, loc: storage))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



