Ganesh Anand
Ganesh Anand
Others are facing issues with the Docker as well. https://github.com/dmlc/decord/pull/166#issuecomment-1015189012
Hello, I have gotten this working @AntreasAntoniou @egorovivannn The issue was the path to which the libnvcuvid files are copied. `ln -s` also didn't work for me. I copied and...
I have been trying this too. @kcq This is my Dockerfile ```Dockerfile FROM nvcr.io/nvidia/pytorch:22.08-py3 WORKDIR / ADD run.py / CMD [ "python", "run.py" ] ``` and this is run.py ```python3...
Thank you. I will use it cautiously. I was able to get the above code working though with ```python import multiprocessing as mp mp.set_start_method('spawn', force=True) ``` at the beginning of...