Hi, In keras-retinanet, inappropriate dependency versioning constraints can cause risks.
Below are the dependencies and version constraints that the project is using
keras-resnet==0.2.0
keras
matplotlib
numpy>=1.14
pillow
progressbar2
The version constraint == will introduce the risk of dependency conflicts because the scope of dependencies is too strict.
The version constraint No Upper Bound and * will introduce the risk of the missing API Error because the latest version of the dependencies may remove some APIs.
After further analysis, in this project,
The version constraint of dependency keras can be changed to >=2.0.9,<=2.3.1.
The above modification suggestions can reduce the dependency conflicts as much as possible,
and introduce the latest version as much as possible without calling Error in the projects.
The invocation of the current project includes all the following methods.
In version keras-2.4.0, the API keras.utils.multi_gpu_model whch is used by the current project in keras_retinanet/bin/train.py is missing.
This issue has been automatically marked as stale due to the lack of recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Hi, In keras-retinanet, inappropriate dependency versioning constraints can cause risks.
Below are the dependencies and version constraints that the project is using
The version constraint == will introduce the risk of dependency conflicts because the scope of dependencies is too strict. The version constraint No Upper Bound and * will introduce the risk of the missing API Error because the latest version of the dependencies may remove some APIs.
After further analysis, in this project, The version constraint of dependency keras can be changed to >=2.0.9,<=2.3.1.
The above modification suggestions can reduce the dependency conflicts as much as possible, and introduce the latest version as much as possible without calling Error in the projects.
The invocation of the current project includes all the following methods.
In version keras-2.4.0, the API keras.utils.multi_gpu_model whch is used by the current project in keras_retinanet/bin/train.py is missing.
The calling methods from the keras
The calling methods from the all methods
@developer Could please help me check this issue? May I pull a request to fix it? Thank you very much.