We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 970488e commit b5612acCopy full SHA for b5612ac
docs/autogen.py
@@ -369,7 +369,7 @@ def get_class_signature(cls):
369
370
371
def post_process_signature(signature):
372
- parts = signature.split('.')
+ parts = re.split('\.(?!\d)', signature)
373
if len(parts) >= 4:
374
if parts[1] == 'layers':
375
signature = 'keras.layers.' + '.'.join(parts[3:])
0 commit comments