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
When the command !pip3 install -e .[pc] is ran on a colab GPU instance, it will automatically uninstall the GPU-capable tensorflow and install tensorflow 2.9.
We can see that before 5.0.0 (e.g. v5.0.dev3 ), the output of the training is like this:
2024-01-23 11:53:05.172074: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1929] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 13949 MB memory: -> device: 0, name: Tesla T4, pci bus id: 0000:00:04.0, compute capability: 7.5
INFO:donkeycar.parts.keras:Created KerasLinear with interpreter: KerasInterpreter
whereas in 5.0.0, the output of the training is like this:
2024-01-23 11:56:07.005500: W tensorflow/core/common_runtime/gpu/gpu_device.cc:1850] Cannot dlopen some GPU libraries. Please make sure the missing libraries mentioned above are installed properly if you would like to use GPU. Follow the guide at https://www.tensorflow.org/install/gpu for how to download and setup the required libraries for your platform.
Skipping registering GPU devices...
I understand that including tensorflow in the pc option would facilitate a smoother installation experience. How about if we add one more option named colab which would be the same as pc but without tensorflow? It would allow users to train models on colab without editing the setup.cfg manually.
The text was updated successfully, but these errors were encountered:
In the latest release 5.0.0, tensorflow==2.9 is added to
donkeycar/setup.cfg
Line 69 in d60dcb5
When the command
!pip3 install -e .[pc]
is ran on a colab GPU instance, it will automatically uninstall the GPU-capable tensorflow and install tensorflow 2.9.We can see that before 5.0.0 (e.g. v5.0.dev3 ), the output of the training is like this:
whereas in 5.0.0, the output of the training is like this:
I understand that including tensorflow in the
pc
option would facilitate a smoother installation experience. How about if we add one more option namedcolab
which would be the same aspc
but without tensorflow? It would allow users to train models on colab without editing the setup.cfg manually.The text was updated successfully, but these errors were encountered: