Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correcting filter size typo (keras-team#288)
* Correcting filter size typo At the "Build the generators" the last layer is said to have `filter size of 1` but actually, it also has `filter size of 7` as the first layer, it has `stride size of 1` what may have caused the typo. * Missing parameter at "GANMonitor" At the `GANMonitor` class it is being used hardcoded `4` but there is actually a paramter defined at the `__intit__` `num_img` that could be used there, I think that this was the initial purpose. * Filter size typo and "GANMonitor" parameter Filter size typo - At the "Build the generators" the last layer is said to have `filter size of 1` but actually, it also has `filter size of 7` as the first layer, it has `stride size of 1` what may have caused the typo. "GANMonitor" parameter - At the `GANMonitor` class it is being used hardcoded `4` but there is actually a parameter defined at the `__intit__` `num_img` that could be used there, I think that this was the initial purpose. * Filter size typo and "GANMonitor" parameter (.md) Filter size typo - At the "Build the generators" the last layer is said to have `filter size of 1` but actually, it also has `filter size of 7` as the first layer, it has `stride size of 1` what may have caused the typo. "GANMonitor" parameter - At the `GANMonitor` class it is being used hardcoded `4` but there is actually a parameter defined at the `__intit__` `num_img` that could be used there, I think that this was the initial purpose.
- Loading branch information