-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
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
Is a GPU version of TF implied in order to run live_demo.py
on a GPU?
#120
Comments
Tensorflow is required for some of the dataset loaders for training, but it shouldn't be required for inference (hence why it's not present in requirements_inference.txt or the base dependencies in or toml file). I don't think live_demo.py depends on tensorflow; let me know if I'm missing something. Even for training, tensorflow shouldn't run on GPU; a CPU versoin should be fine. |
Hi Carl, it seems
I care about this because of the below statement I found in https://www.tensorflow.org/install/source_windows. If GPU version for
The discussion reminds me of one more thing. Are there any version restrictions for |
Hi weirenorweiren, Can you try comment this line Line 21 in a0cd34d
then see if live_demo.py can work without tensorflow dependency? Thanks. |
Hi Yi, it works and thanks so much! Could you also please take a look at the below question I asked in the previous reply? I am now working towards setting up the CUDA environment on Windows and any relevant information is appreciated!
|
I want to run
live_demo.py
on a GPU in Windows. The provided requirement files involvesjax
andtensorflow
butlive_demo.py
only explicitly importsjax
. Is a GPU version oftensorflow
implied in order to runlive_demo.py
orjax
on a GPU? Actually I am wondering whytensorflow
is required in the requirements?The text was updated successfully, but these errors were encountered: