Kasun Gamlath

Results 1 comments of Kasun Gamlath

> `RuntimeError: step!=1 is currently not supported` parsing the argument `opset_version=11` to `torch.onnx.export` fixed this for me. ``` torch.onnx.export(kp_detector, (dummy_source_image,), 'first-order-model-kp_detector.onnx', export_params=True, input_names=['input'], output_names=['output'], opset_version=11, verbose=True) ```