User Activity Reports

- User Activity
SCM Activity Reports

- SCM Activity
Yanbo Liang
-
- Project:
- Keras v2.2.2
-
- Revision:
- be28fd9e06cb16d28730c87f5c5a2b790c1abbcc
-
- Files:
- 1
Francois Chollet
-
- Project:
- Keras v2.2.2
-
- Revision:
- eb2c1fdc2d5f841e328993e3bd0e1a3de268fe20
-
- Files:
- 3
Gabriel de Marmiesse
commented Refactoring: 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)
-
- Project:
- Keras v2.2.2
-
- Revision:
- dd07a4c41efed22afb5780cd584555cbff141c74
-
- Files:
- 7
Yanbo Liang
-
- Project:
- Keras v2.2.2
-
- Revision:
- b2979c25d3d7d55a6579de0b2906c66e8fd2e172
-
- Files:
- 2
Brian Nemsick
commented Fix Stateful Metrics in fit_generator with TensorBoard (#10673)
* Fix casting validate generator with stateful metrics.
* Add a stateful metric to Tensboard tests
-
- Project:
- Keras v2.2.2
-
- Revision:
- da9ce7d8f2e4212cebdacc80f6252b4ae1e68773
-
- Files:
- 2
Kevin Mader
commented Fixing 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
-
- Project:
- Keras v2.2.2
-
- Revision:
- 1c4bb1ed8286b723d99b419a6a5e63286353b149
-
- Files:
- 2
Yanbo Liang
-
- Project:
- Keras v2.2.2
-
- Revision:
- d4c1f69693ec476b33add0d540631021eea36a0c
-
- Files:
- 1
fuzzythecat
commented Fix #10737 (#10745)
* Fix #10737
* Change length to steps
* Make style changes for consistency
-
- Project:
- Keras v2.2.2
-
- Revision:
- 749413a5d5b94f4335fe5704a107d8b2dd84c7f1
-
- Files:
- 1
Masoud Kazemi
commented Fix 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)
-
- Project:
- Keras v2.2.2
-
- Revision:
- aab55e649c34f8a24f00ee63922d049d3417c979
-
- Files:
- 1
commented
Prepare new release.