-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHANGELOG
More file actions
16 lines (13 loc) · 1.1 KB
/
Copy pathCHANGELOG
File metadata and controls
16 lines (13 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- 2019-03-14 1.9.0 beta: added deep features from VGG19 and a discriminator for GAN training.
Moved all non strictly architecture building operations outside of the model files.
The models are combined when needed in the Trainer class.
In order to allow for GAN training `fit_generator` function had to be replaced
with the more granular `train_on_batch`. Now the project relies on
custom data handlers and loggers instead of the custom Keras generator.
- 1.9.2 beta: Included tutorial notebooks, modified init files for less verbose import statements.
Comprehensive docstrings refactor.
- 2019-03-25 1.9.3 beta: now ISR models are child of the ImageModel class, whose purpose is to collect
common functions across models. At the moment it only contains a predict function that takes numpy arrays
as input and returns numpy arrays in a proper image format.
- 2019-03-26 2.0.0 beta: brought a number of training hyperparameters to the surface of trainer and the CLI assistant.
Removed most hard-coded variables and improved assistant. Weights saving now allows metric selection, with suggested metrics list in assistant.