MobileNetV1, MobileNetV2, VGG based SSD/SSD-lite implementation in Pytorch 1.0 / Pytorch 0.4. Out-of-box support for retraining on Open Images dataset. ONNX and Caffe2 support. Experiment Ideas like CoordConv.
This behavior is noted in convert_to_caffe2_models.py while trying to load a converted onnx model. The readme documentation was followed up until this point.
model = onnx.load(model_path)
init_net, predict_net = c2.onnx_graph_to_caffe2_net(model)
This behavior is noted in
convert_to_caffe2_models.py
while trying to load a converted onnx model. The readme documentation was followed up until this point.model = onnx.load(model_path) init_net, predict_net = c2.onnx_graph_to_caffe2_net(model)