1. 18 6月, 2020 1 次提交
  2. 06 11月, 2019 1 次提交
    • X
      Fix too many values to unpack error (#13511) · 7a39b6c6
      xemcerk 提交于
      * 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
      7a39b6c6
  3. 25 10月, 2019 1 次提交
  4. 22 10月, 2019 1 次提交
  5. 21 10月, 2019 2 次提交
    • N
      Update core.py (#13472) · 4d59675b
      Naruu 提交于
      `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'`
      4d59675b
    • N
      Update pooling.py (#13467) · afff7b43
      Naruu 提交于
      * 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"`
      afff7b43
  6. 18 10月, 2019 1 次提交
  7. 14 10月, 2019 1 次提交
  8. 12 10月, 2019 1 次提交
    • J
      Change `batch_size` descriptions to proper ones (#13422) · 2b1f8ed2
      Junyoung Kim 提交于
      * 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".
      2b1f8ed2
  9. 10 10月, 2019 1 次提交
  10. 08 10月, 2019 3 次提交
  11. 07 10月, 2019 2 次提交
  12. 05 10月, 2019 1 次提交
  13. 02 10月, 2019 1 次提交
  14. 30 9月, 2019 1 次提交
    • N
      Update local.py docstrings (#13373) · 985521ee
      Naruu 提交于
      * 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
      985521ee
  15. 26 9月, 2019 3 次提交
  16. 21 9月, 2019 2 次提交
  17. 19 9月, 2019 3 次提交
  18. 18 9月, 2019 1 次提交
  19. 17 9月, 2019 1 次提交
  20. 16 9月, 2019 1 次提交
    • A
      Fix sequence timeout deadlock (#13322) · cf9595ae
      Andrey Zakharevich 提交于
      * 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
      cf9595ae
  21. 15 9月, 2019 1 次提交
  22. 13 9月, 2019 1 次提交
  23. 12 9月, 2019 9 次提交