Hi all,
I have some question about train the resnet18detectnetv2 for custom my own dataset.
1- I need to converted my own dataset to kitti dataset format? If so, I need first resize images and boxes for fixed size like kitti dataset size as offline?
2- for converting the dataset to tfrecord, tlt-tfrecord-converter expected to have 16 fields in labels text files, I should to fill other fields any value like zeros except x,y,w,h and class id?
3- In the detectnet_v2_train_resnet18_kitti.txt, there are all config about classes of kitti, like this:
target_class_config {
key: "pedestrian"
value {
clustering_config {
coverage_threshold: 0.00749999983236
dbscan_eps: 0.230000004172
dbscan_min_samples: 0.0500000007451
minimum_bounding_box_height: 20
}
}
}
target_classes {
name: "pedestrian"
class_weight: 4.0
coverage_foreground_weight: 0.0500000007451
objectives {
name: "cov"
initial_weight: 1.0
weight_target: 1.0
}
objectives {
name: "bbox"
initial_weight: 10.0
weight_target: 10.0
}
}
There are many such config about claases of kitti, I need to modify all of this to my custom dataset classes?
4- How do I use trt engine like .engine file with python code without deep stream sdk?