Please provide the following information when requesting support.
• Hardware (T4)
• Network Type (Yolo_v3)
• How to reproduce the issue ? (This is for errors. Please share the command line and the detailed log here.)
Running the yolov3 training notebook of tao called “tao_launcher_starter_kit”
When i run below steps to convert the kitti raw dataset to tfrecord i got some errors after some time
Traceback (most recent call last):
File "/home/rishi/miniconda3/envs/launcher/bin/tao", line 8, in <module>
sys.exit(main())
File "/home/rishi/miniconda3/envs/launcher/lib/python3.8/site-packages/nvidia_tao_cli/entrypoint/tao_launcher.py", line 134, in main
instance.launch_command(
File "/home/rishi/miniconda3/envs/launcher/lib/python3.8/site-packages/nvidia_tao_cli/components/instance_handler/local_instance.py", line 382, in launch_command
docker_handler.run_container(command)
File "/home/rishi/miniconda3/envs/launcher/lib/python3.8/site-packages/nvidia_tao_cli/components/docker_handler/docker_handler.py", line 325, in run_container
self.pull()
File "/home/rishi/miniconda3/envs/launcher/lib/python3.8/site-packages/nvidia_tao_cli/components/docker_handler/docker_handler.py", line 187, in pull
docker_pull_progress(line, progress)
File "/home/rishi/miniconda3/envs/launcher/lib/python3.8/site-packages/nvidia_tao_cli/components/docker_handler/docker_handler.py", line 58, in docker_pull_progress
if line['status'] == 'Downloading':
KeyError: 'status'
You can restart to notebook to check.
Or, as mentioned above, you can run in terminal instead of notebook to double check.
$ tao model yolo_v3 run /bin/bash
From the log, the docker is downloading. You can run $docker images to check if there is a new tao docker. If yes, then you run as below to run dataset-convert.
$ tao model yolo_v3 run /bin/bash
Then inside the docker #yolo_v3 dataset_convert xxx
There should be many reasons for pulling error. For example, if there is not disk space.
If docker is pulled, instead of using “tao xxx”, you can use “docker run xxx” to check if it works.