model to ONNX
Is it possible to add a model converter to ONNX ?
Native PyTorch 1.12-1.13 have a torch.onnx.export() method. Can this method be ported to Torch(R)? Or in another way to convert the model trained in R to ONNH?
Unfortunatelly there's currently there's no way of doing it directly from R. You can potentially jit_trace your model, load it in PyTorch and export it to ONNX.
Thank you. I will check the option
Is there any interest in supporting an ONNX export feature in the future?
Exportable/Transportable/Sharable models are pretty important/relevant right now