I want to know if this pipeline I understand is correct to start TAO Toolkit Quick Start. I’m confused whether I should build a docker container first and run a Jupyter Notebook there, or run Jupyter Notebook directly in a virtual environment, as in the introduction video. I already downloaded all the prerequisites.
- Like the introduction video
- Turn on the terminal and activate virtual env(miniconda)
- docker login nvcr.io
- cd <path ~cv_samples_v1.3.0>
- Deploy jupyter notebook
(There is nothing on $docker ps -a)
(In this way, I can’t understand how the local folder mounts to /workspace path)
Or
- Use Docker Container
- Turn on the terminal and activate virtual env(miniconda)
- docker login nvcr.io
- docker run --runtime=nvidia --name taotool -it -v /home/desktop/tao_tool/cv_samples_v1.3.0:/workspace -p 8888:8888 nvcr.io/nvidia/tao/tao-toolkit-tf:v3.21.11-tf1.15.5-py3 /bin/bash
(docker exec -it taotool /bin/bash) - jupyter notebook --ip 0.0.0.0 --port 8888 --allow-root
(Does I use a virtual environment in this case?)
Is both ways possible??