I’ve trained a semantic segmentation model using cityscapes+bdd100k dataset on pytorch. I wonder how I can integrate it into jetson-inference, specifically turn it into a network of segnet-camera.py. I’ve looked in the documentation but I can’t find anything. Thank you.
Hi @kekboiA, what is the network architecture of your model? The segNet class in jetson-inference is setup for FCN-ResNet (and FCN-Alexnet, although that isn’t used so much anymore).
If your model uses a different input pre-processing (i.e. RGB vs BGR, mean pixel subtraction or normalization applied) or the model’s output layers are different, then segNet’s pre/post-processing code would need to be adapted to support it.