Running whitepaper github github https://github.com/NVIDIA-AI-IOT/TAO-Toolkit-Whitepaper-use- cases/blob/main/workspace/peoplenet_helmet/Process%26Train_Helmet.ipynb Below is the output of the command and below that is the subsequent command and its output: /home/achler/miniconda3/envs/launcher/lib/python3.6/site-packages/tlt/__init__.py:20: DeprecationWarning: The `nvidia-tlt` package will be deprecated soon. Going forward please migrate to using the `nvidia-tao` package. warnings.warn(message, DeprecationWarning) 2022-10-20 18:07:02,201 [INFO] root: Registry: ['nvcr.io'] 2022-10-20 18:07:02,270 [INFO] tlt.components.instance_handler.local_instance: Running command in container: nvcr.io/nvidia/tao/tao-toolkit-tf:v3.21.11-tf1.15.4-py3 2022-10-20 18:07:02,294 [WARNING] tlt.components.docker_handler.docker_handler: Docker will run the commands as root. If you would like to retain your local host permissions, please add the "user":"UID:GID" in the DockerOptions portion of the "/home/achler/.tao_mounts.json" file. You can obtain your users UID and GID by using the "id -u" and "id -g" commands on the terminal. Using TensorFlow backend. Using TensorFlow backend. WARNING:tensorflow:Deprecation warnings have been disabled. Set TF_ENABLE_DEPRECATION_WARNINGS=1 to re-enable them. 2022-10-21 01:07:13,840 [INFO] iva.detectnet_v2.spec_handler.spec_loader: Merging specification from /tlt_exp/peoplenet_helmet/experiments/inf_people_spec.txt 2022-10-21 01:07:13,843 [INFO] __main__: Overlain images will be saved in the output path. 2022-10-21 01:07:13,843 [INFO] iva.detectnet_v2.inferencer.build_inferencer: Constructing inferencer WARNING:tensorflow:From /opt/tlt/.cache/dazel/_dazel_tlt/75913d2aee35770fa76c4a63d877f3aa/execroot/ai_infra/bazel-out/k8- fastbuild/bin/magnet/packages/iva/build_wheel.runfiles/ai_infra/iva/detectnet_v2/inferencer/tlt_infer encer.py:84: The name tf.ConfigProto is deprecated. Please use tf.compat.v1.ConfigProto instead. 2022-10-21 01:07:13,843 [WARNING] tensorflow: From /opt/tlt/.cache/dazel/_dazel_tlt/75913d2aee35770fa76c4a63d877f3aa/execroot/ai_infra/bazel-out/k8- fastbuild/bin/magnet/packages/iva/build_wheel.runfiles/ai_infra/iva/detectnet_v2/inferencer/tlt_infer encer.py:84: The name tf.ConfigProto is deprecated. Please use tf.compat.v1.ConfigProto instead. WARNING:tensorflow:From /opt/tlt/.cache/dazel/_dazel_tlt/75913d2aee35770fa76c4a63d877f3aa/execroot/ai_infra/bazel-out/k8- fastbuild/bin/magnet/packages/iva/build_wheel.runfiles/ai_infra/iva/detectnet_v2/inferencer/tlt_infer encer.py:87: The name tf.Session is deprecated. Please use tf.compat.v1.Session instead. 2022-10-21 01:07:13,843 [WARNING] tensorflow: From /opt/tlt/.cache/dazel/_dazel_tlt/75913d2aee35770fa76c4a63d877f3aa/execroot/ai_infra/bazel-out/k8- fastbuild/bin/magnet/packages/iva/build_wheel.runfiles/ai_infra/iva/detectnet_v2/inferencer/tlt_infer encer.py:87: The name tf.Session is deprecated. Please use tf.compat.v1.Session instead. 2022-10-20 18:07:44,903 [INFO] tlt.components.docker_handler.docker_handler: Stopping container. #Combine the inferenced labels with the existing helmet labels output_folder = os.path.join(dataset_home, "peoplenet_labels") #loop through all labels in helmet dataset for label in os.listdir(os.path.join(dataset_home,"helmet_set_all/labels")): helmet_label = os.path.join(dataset_home, "helmet_set_all/labels", label) inferenced_labels = os.path.join(output_folder, "labels") people_label = os.path.join(output_folder,"labels",label) #append the peoplenet inference to the original helmet labels with open(helmet_label, "a") as label_f: with open(people_label, "r") as people_f: for line in people_f: line = line.split(" ") line = " ".join(line[:-1]) label_f.write(line + "\n") #output is a label text file with the helmet, people and face labels --------------------------------------------------------------------------- FileNotFoundError Traceback (most recent call last) in 9 #append the peoplenet inference to the original helmet labels 10 with open(helmet_label, "a") as label_f: ---> 11 with open(people_label, "r") as people_f: 12 for line in people_f: 13 line = line.split(" ") FileNotFoundError: [Errno 2] No such file or directory: '/home/achler/cv_samples_v1.4.0/helmet/workspace/peoplenet_helmet/../../datasets/helmet/peoplen et_labels/labels/BikesHelmets724.txt'