The error i got:
AssertionError: Pretrained model file not found: /workspace/pretrained_model/tlt_resnet18_detectnet_v2_v1/
I used below configurattion
model_config {
pretrained_model_file: "/workspace/pretrained_model/tlt_resnet18_detectnet_v2_v1/"
num_layers: 18
freeze_blocks: 0
arch: "resnet"
use_batch_norm: true
objective_set: {
cov {}
bbox {
scale: 35.0
offset: 0.5
}
}
training_precision {
backend_floatx: FLOAT32
}
}
I also tried altering the model path like:
pretrained_model_file: "/workspace/pretrained_model"
pretrained_model_file: "/workspace/pretrained_model/*"
pretrained_model_file: "/workspace/pretrained_model/tlt_resnet18_detectnet_v2_v1"
pretrained_model_file: "/workspace/pretrained_model/tlt_resnet18_detectnet_v2_v1/"
But nothing seems to work, i also checked the pretrained_model directory this file “tlt_resnet18_detectnet_v2_v1” is present there.