Hello Morganh:
I’m sorry late. I’m trying to use LPR-Net of getting-started_4.0.0 in this part of the code:
print(“For multi-GPU, change --gpus based on your machine.”)
!tao lprnet train --gpus=1 --gpu_index=$GPU_INDEX
-e $SPECS_DIR/tutorial_spec.txt
-r $USER_EXPERIMENT_DIR/experiment_dir_unpruned
-k $KEY
-m $USER_EXPERIMENT_DIR/pretrained_lprnet_baseline18/lprnet_vtrainable_v1.0/us_lprnet_baseline18_trainable.tlt
I have the following problems:
For multi-GPU, change --gpus based on your machine.
2023-03-03 19:08:43,304 [INFO] root: Registry: [‘nvcr.io’]
2023-03-03 19:08:43,343 [INFO] tlt.components.instance_handler.local_instance: Running command in container: nvcr.io/nvidia/tao/tao-toolkit:4.0.0-tf1.15.5
Docker instantiation failed with error: 400 Client Error: Bad Request (“failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error mounting “/home/guille/Documentos/getting-started_4.0.0/notebooks/tao_launcher_starter_kit/lprnet/specs” to rootfs at “/workspace/tao-experiments/lprnet/specs”: mkdir /var/lib/docker/100000.100000/overlay2/410bb2836bde724ad8bc453ceb5a399cf93576dca921c6aca55d05ddc14aaf56/merged/workspace/tao-experiments/lprnet/specs: permission denied: unknown”)
My configuration /etc/docker/daemon.json
{
“runtimes”: {
“nvidia”: {
“args”: ,
“path”: “nvidia-container-runtime”
}
},
“builder”: {
“gc”: {
“defaultKeepStorage”: “20GB”,
“enabled”: true
}
},
“experimental”: false,
“features”: {
“buildkit”: true
},
“userns-remap”: “guille”,
“default-shm-size”: “1G”,
“default-ulimits”: {
“memlock”: { “name”:“memlock”, “soft”: -1, “hard”: -1 },
“stack” : { “name”:“stack”, “soft”: 67108864, “hard”: 67108864 }
}
}
And this is my configuration in .tao_mounts.json
{
“Mounts”: [
{
“source”: “/home/guille/tlt-experiments”,
“destination”: “/workspace/tao-experiments”
},
{
“source”: “/home/guille/Documentos/getting-started_4.0.0/notebooks/tao_launcher_starter_kit/lprnet/specs”,
“destination”: “/workspace/tao-experiments/lprnet/specs”
}
],
“DockerOptions”: {
“user”: “1000:1000”
}
}
Please, what’s my error?
best regards