Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update autogen.py
fix duplicate module name for callbacks module
  • Loading branch information
Naruu authored Oct 13, 2019
commit 68e8714bad1d4f57aa6b38084d711f757393a5a5
2 changes: 2 additions & 0 deletions docs/autogen.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ def post_process_signature(signature):
signature = 'keras.utils.' + '.'.join(parts[3:])
if parts[1] == 'backend':
signature = 'keras.backend.' + '.'.join(parts[3:])
if parts[1] == 'callbacks':
signature = 'keras.callbacks.' + '.'.join(parts[3:])
return signature


Expand Down