Model Zoo equivalent for C++ loadable models

Hello all,…
I would like to deploy a solution using the pretrained ssd in c++ using the torch::jit::load. I tried loading the .pt file downloaded via torch.hub but it raised an error saying only serialised files can be loaded…
I was wondering if there is some reliable/official source where I could download a variety of pretrained models which can be loaded by libtorch?
TIA

You would have to script your model first, save it, and load it in C++ via libtorch.
This tutorial explains the steps. :slight_smile:

Thanks for replying @ptrblck I went through that immidiately after posting the query and tried to trace the fasterrcnn-resnet50-fpn. and came across error tracing it. Still trying though