We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Keras version - 2.2.4 Python - 3.6.6 issue: ----> 6 model = ResNet50(input_tensor=image_input, include_top=True,weights='imagenet') TypeError: _obtain_input_shape() got an unexpected keyword argument 'include_top'
is there a fix for this?
The text was updated successfully, but these errors were encountered:
in the line 195 of resNet50.py ,you need to change include_top=include_top to require_flatten=include_top
Sorry, something went wrong.
it works
TypeError: Xception() got an unexpected keyword argument 'require_flatten'
No branches or pull requests
Keras version - 2.2.4
Python - 3.6.6
issue:
----> 6 model = ResNet50(input_tensor=image_input, include_top=True,weights='imagenet')
TypeError: _obtain_input_shape() got an unexpected keyword argument 'include_top'
is there a fix for this?
The text was updated successfully, but these errors were encountered: