Change Log
==========

0.0.9 (04/10/2020)
-----------------
* Added support for setting trainer's scheduler to None
* Added name property to trainer
* Added trainer's description
* Added last train/val/test loss objects
* Reduce package size by moving images to another repo 
* Added another example "Basic"
* If no metrics provided, EpochEndStats will print "no metrics found"
* Fixed trainer crash if no metric_name_to_func was provided
* Added seed_all to general_utils
* Added seed_torch to torch_utils
* Added readme about utils
                         


0.0.8 (03/10/2020)
-----------------
* added optional round_values_on_print_to to EpochEndStats and ModelCheckPoint callbacks
* removed round_values_to from TrainerStats & Stats (it didnt made sense anyway)
* removed print_round_values_to from trainer, its now on the callbacks themselves
* updated readme


0.0.7 (03/10/2020)
-----------------
* splited TrainerStats class into TrainerStats & Stats
* can now easily call trainer.train_stats.get_loss() or trainer.val_stats.get_metrics()
* TrainerStats now has a reset() function
* using configs in example 
* code clean up and cosmetics


0.0.6 (02/10/2020)
-----------------
scheduler step as callback, support for step() with or without parameters


0.0.1 (01/10/2020)
-----------------
- First Release