• Hardware : Nvidia GeForce GTX 1060
• Network Type Yolov4-tiny
• TLT Version: TAO 3.21.11
• Training spec file(If have, please share here)
• How to reproduce the issue ?
Execute “tao yolo_v4_tiny train {parms}”, gives following error, indicating that wrong key is used, although that is what was provided with Jupyter sample:
Invalid decryption. Unable to open file (unable to open file: name = ‘EXPERIMENT_DIR/pretrained_cspdarknet_tiny/pretrained_object_detection_vcspdarknet_tiny/cspdarknet_tiny.hdf5’, errno = 2, error message = ‘No such file or directory’, flags = 0, o_flags = 0). The key used to load the model is incorrect.
2021-12-02 17:28:11,437 [INFO] tlt.components.docker_handler.docker_handler: Stopping container.
The Key is set by this environment variable: %env KEY=nvidia_tlt
The full command is:
!tao yolo_v4_tiny train -e $SPECS_DIR/yolo_v4_tiny_train_kitti_seq.txt
-r $USER_EXPERIMENT_DIR/experiment_dir_unpruned
-k $KEY
–gpus 1
I am afraid above link is not available.
You can double check with below command.
$ tao yolov4 run ls EXPERIMENT_DIR/pretrained_cspdarknet_tiny/pretrained_object_detection_vcspdarknet_tiny/cspdarknet_tiny.hdf5
Thanks again Morgan for your assistance, it’s working now.
My problem was that I tried to use the env variable EXPERIMENT_DIR in my spec file which does not work. Changing this to the full container path solved the problem.