I want to run TAO training on background

currently I can execute to train to only running on Jupyter.
I am using the cv_sample_v1.2.0 tutorial.

How can I run the TAO train on background?

The command is below.

# Retraining using the pruned model as pretrained weights 
!tao detectnet_v2 train -e $SPECS_DIR/detectnet_v2_retrain_resnet18_kitti.txt \
                        -r $USER_EXPERIMENT_DIR/experiment_dir_retrain \
                        -k $KEY \
                        -n resnet18_detector_pruned \
                        --gpus 4

Do you mean running in terminal instead of jupyter notebook?
Yes, it is possible.

Thank you for replying.
Could you tell me please.

is it the something commands?

The same as notebook.
In the terminal,
You can run
$ tao detectnet_v2 train xxx

Or you can also login the docker and then run training.
$ tao detectnet_v2 run /bin/bash
then,
# detectnet_v2 train xxx

thanks.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.