-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add: some classifiers for python versions #49
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about 3.8?
This program was not able to work correctly in Python 3.8 somehow. |
Why is the version of numpy specified differently in setup.py and requirements.txt? install_requires = open('requirements.txt').read().splitlines() |
fair point @eggplants - sometimes we mod requirements.txt for rapid testing/forward testing, but indeed best practice would be to sync them. |
@MMathisLab @AlexEMG |
I'm wondering if I should put something in setup.py that determines if the GPU is available and installs tensorflow or tensorflow-gpu. I think it would be useful. |
HI @eggplants the issue is that whatever version of TF was used tor train the model should be used to run it in DLC_live; both TF1 and all TF 2 versions are then compatible |
@MMathisLab I didn't understand much about Tensorflow models. Thank you for the explanation. |
Line 34 in 4ac659a
Since the version is not specified here, if you have not installed Tensorflow beforehand and run |
I added some classifiers of
Programming Language
tosetup.py
.This tiny change will improve the search slightly in PyPI.