keras-applications required==1.0.4 rather than >=
See original GitHub issueThis may be intentional, but the Keras setup.py
install requires 'keras_applications==1.0.4',
see: https://github.com/keras-team/keras/blob/master/setup.py#L40
keras-applications
version 1.0.5 is out (and is auto-installed when you install tensorflow==1.11.0rc0 because it requires >=1.0.5).
The issue appears because I’m installing keras and tensorflow with pipenv
which can’t create a lock file because of incompatible requirements:
Could not find a version that matches keras-applications==1.0.4,>=1.0.5
This is not a big problem – everything works on my end, but I thought it might not have been intentional to make the requirement ==
rather than >=
Issue Analytics
- State:
- Created 5 years ago
- Comments:10 (4 by maintainers)
Top Results From Across the Web
Keras Applications
Model Size (MB) Top‑1 Accuracy Top‑5 Accuracy Parameters Depth Time (ms) per infer...
Xception 88 79.0% 94.5% 22.9M 81 109.4
VGG16 528 71.3% 90.1% 138.4M...
Read more >Keras-Applications - PyPI
Keras Applications is the applications module of the Keras deep learning library. It provides model definitions and pre-trained weights for a number of ......
Read more >Module: tf.keras.applications | TensorFlow v2.11.0
Keras Applications are premade architectures with pre-trained weights. ... covering diffusion models with KerasCV, on-device ML, and more.
Read more >Keras-Applications - Python Package Health Analysis - Snyk
Learn more about Keras-Applications: package health score, popularity, security, ... With more than 10 contributors for the Keras-Applications repository, ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I put in a PR real quick because I hit this issue today https://github.com/keras-team/keras/pull/11238
Closing this issue since it was solved.