All Projects / Keras v2.2.2

Last Updated by: Francois Chollet

User Activity Reports

help
  • User Activity

Loading Results...

SCM Activity Reports

help
  • SCM Activity

Loading Results...

Gabriel de Marmiesse

man

commented textRefactoring: Simplified some code by using the `to_list` function. (#10678) ### Summary We have the method `to_list` in keras. Let's use it to make the codebase simpler! ### Related Issues ### PR Overview - [ ] This PR requires new unit tests [y/n] (make sure tests are included) - [ ] This PR requires to update the documentation [y/n] (make sure the docs are up-to-date) - [x] This PR is backwards compatible [y/n] - [ ] This PR changes the current API [y/n] (all API changes need to be approved by fchollet)

Yanbo Liang

man

commented textNetwork.to_json should handle numpy.ndarray correctly. (#10754)

Brian Nemsick

man

commented textFix Stateful Metrics in fit_generator with TensorBoard (#10673) * Fix casting validate generator with stateful metrics. * Add a stateful metric to Tensboard tests

Kevin Mader

man

commented textFixing HDF5Matrix `.dtype` and `.shape` properties (#10749) * Fixing HDF5Matrix `.dtype` and `.shape` output Adding code to the initialization function of `HDF5Matrix` so that `.dtype` and `.shape` reflect the actual values returned by the normalizer * Update io_utils_test.py adding tests for normalizer functions that change dtype and shape * Update io_utils_test.py removing unnecessary whitespace to make pep8 happy

Yanbo Liang

man

commented textTF Batch Normalization should use FusedBatchNorm when axis = -1 (#10742)

fuzzythecat

man

commented textFix #10737 (#10745) * Fix #10737 * Change length to steps * Make style changes for consistency

Masoud Kazemi

man

commented textFix signature of functions and methods in generated docs (#10743) ### Summary This PR resolves two issues: 1) The `get_function_signature` in `autogen.py` duplicates module name for non-method functions. For example, it returns `keras.preprocessing.sequence.keras.preprocessing.sequence.pad_sequences` instead of `keras.preprocessing.sequence.pad_sequences`. 2) Method functions and non-method functions should be distinguished from each other. Since, the module name of non-method functions should be included in the signature in the docs (like `keras.preprocessing.sequence.pad_sequences(...)`) whereas for the methods of classes it should not be included (like `compile(...)` for `Sequential` class). Therefore, a new `'methods'` key is introduced to make this distinction. Note that I temporary resolved the first issue by a merged PR (#10664); however that PR did not address the underlying problem. ### Related Issues #10658 #10662 ### PR Overview - [n] This PR requires new unit tests [y/n] (make sure tests are included) - [n] This PR requires to update the documentation [y/n] (make sure the docs are up-to-date) - [y] This PR is backwards compatible [y/n] - [n] This PR changes the current API [y/n] (all API changes need to be approved by fchollet)

click to cllapse/expand sidebar