Replies: 1 comment 1 reply
|
I am not sure why |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I am writing some code for Docker Image that utilizes SpeechBrain. However, I encountered an issue with PyTorch on ARM-based CUDA devices (such as the Jetson Nano from NVIDIA or AWS G5g instances). Unlike amd64, PyTorch does not provide official wheels with CUDA support for ARM.
After some research, I found that NVIDIA NGC offers a PyTorch image with built-in support for PyTorch with CUDA on ARM64. The problem arises when a custom build appears to lack version information on pip, and upon running
pip install speechbrain, it reverts to the standard PyPI version.I managed to resolve this by installing the requirements.txt during the Docker RUN command, which works, but it feels like not the good way. Do you have any suggestions?
All reactions