touch_charts/recon.py [170:185]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
			self.save('')
			self.last_improvement = 0
		else:
			self.last_improvement += 1
			if self.last_improvement == self.args.patience:
				print(f'Over {self.args.patience} steps since last imporvement')
				print('Exiting now')
				exit()

		if self.epoch % 10 == 0:
			print(f'Saving Model at epoch {self.epoch}')
			self.save(f'_recent')
		print('*******************************************************')


	def load(self, label):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



vision_charts/recon.py [177:191]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
			self.save('')
			self.last_improvement = 0
		else:
			self.last_improvement += 1
			if self.last_improvement == self.args.patience:
				print(f'Over {self.args.patience} steps since last imporvement')
				print('Exiting now')
				exit()

		if self.epoch % 10 == 0:
			print(f'Saving Model at epoch {self.epoch}')
			self.save(f'_recent')
		print('*******************************************************')

	def load(self, label):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



