You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running this DeepSORT implementation on Google Colab and the runtime is about 0.4-0.5fps.
I'm connected to a GPU but it seems like only the CPU is working. I've tried the following:
Uninstall tensorflow, install tensorflow-gpu 2.3.0 (note: 2.3.0rc0 was a pre-release and it's no longer available)
Verifying GPU is available before running deepsort
Converted my darknet weight to TF (several times)
Restarted the runtime
Any ideas? Seems like this is an ongoing problem and unfortunately renders this implementation unusable until its fixed.
Update: Running the command "tf.test.gpu_device_name()" should output "/device:GPU:0" meaning there is one GPU connected and available. With TF 2.3.0 installed, there is no output of this command. With the latest version of TF installed, the command is recognized and the expected output appears.
The issue here is TF version 2.3.0 seems to not compatible with the current version of CUDA (11.2), so the GPU is not used. Can this repo be updated to run on a new version of tensorflow?
The text was updated successfully, but these errors were encountered:
Yes that requirements file installation TF version 2.3.0 which does not have GPU support for the latest version of CUDA. It is running with CPU only because TF cannot interface with the GPU.
I'm running this DeepSORT implementation on Google Colab and the runtime is about 0.4-0.5fps.
I'm connected to a GPU but it seems like only the CPU is working. I've tried the following:
Any ideas? Seems like this is an ongoing problem and unfortunately renders this implementation unusable until its fixed.
Update: Running the command "tf.test.gpu_device_name()" should output "/device:GPU:0" meaning there is one GPU connected and available. With TF 2.3.0 installed, there is no output of this command. With the latest version of TF installed, the command is recognized and the expected output appears.
The issue here is TF version 2.3.0 seems to not compatible with the current version of CUDA (11.2), so the GPU is not used. Can this repo be updated to run on a new version of tensorflow?
The text was updated successfully, but these errors were encountered: