forked from keras-team/keras
-
Notifications
You must be signed in to change notification settings - Fork 0
Getting up to date with Keras #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* rem get_session() call from multi gpu utils * tiny fix * optimizer fixes * fix tempfile * rem os.remove * rem tmpdir * ws fix
* rem get_session() call from multi gpu utils * tiny fix
* Add a test for deadlock after sequence worker timeout * Call task_done even if the task timeouted * catch dead worker warning * fix line length * Increase deadlock detection timeout to prevent flakiness
Link to the metrics document(/metrics) was missing in 'Compilation' section. Added one just as other explained arguments.
* Add utf-8 encoding * Fix PEP8 error * Fix PEP8 error
* Update local.py stride value implies the input argument of 'stride', and dilation_rate implies the input argument of 'dilation rate' of Conv1D function. It is more explicit to express as code rather than using words stride value, dilation value. Or, at least both stride and dilation_rate should be written in code, not only dilation rate as before document * Update local.py mark as code snippet
* Fix file leak in CSVLogger * Update callbacks.py
* Use .format calls for string interpolation on utils * Use generators over listcomps whenever possible to save memory
* Change `batch_size` descriptions to proper ones Since there're no gradients updated during `evaulate` and `predict` processes, changed their `batch_size` docstrings from `"Number of samples per gradient update"` to `"Number of samples per evaluation step"` and `"Number of samples to be predicted at once"`. (The sentence in fit remains unchanged.) I hope this fix would change related auto-generated documents as well. * Correct `callbacks` description docstrings Corrected `callbacks` description docstrings in `evaluate_generator` and `predict_generator`: "List of callbacks to apply during training" -> "- during evaluation", "- during prediction".
fix duplicate module name for callbacks module
I just fixed Numpy -> NumPy in HDF5Matrix class.
* Update pooling.py Added Integer at the `pool_size` of `MaxPooling3D` * Update pooling.py Add Integer in `strides` and `pool_size` of 3D layers Added "If None, it will default to `pool_size`." to be consistent with explanation of 1D, 2D layer * Update pooling.py `channels_first` ->`"channels_first"` `channels_last` ->`"channels_last"` "channels_last"->`"channels_last"`
`channels_first` -> `'channels_first'` `channels_last`, "channels_last" -> `'channels_last'` data_format='channels_first' -> `data_format='channels_first'` data_format='channels_last' -> `data_format='channels_last'`
* fix too many values to unpack error
In the example script lstm_seq2seq_restore.py and lstm_seq2seq.py, when
parse the data using line.split("\t"), it will return 3 values rather than
2, a simple modification can fix it.
* add blankspace around operator
|
updating to catch up with Keras |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Related Issues
PR Overview