You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I hope to add ONNX format support to this excellent framework.
ONNX is an open-source and a standard format of AI models.
With ONNX we will be able to share our models between frameworks and programing languages.
The text was updated successfully, but these errors were encountered:
You are more than welcome to contribute to this project! I believe that there is already a Java binding for ONNX. Can you please share what you would like to develop? Thanks!
Firstly, thank you very much for your generosity
And secondly I aim to make Smile framework able to import and export ONNX models using smile.io package.
The next virtual code may explain the idea.
import java.nio.file.Path;
import smile.classification.RandomForest;
import smile.io.Read;
import smile.io.Write;
// Import an ONNX model.
RandomForest model = (RandomForest) Read.onnx("/home/model.onnx");
// Export an ONNX model.
Write.onnx(model, Path.of("/home/model.onnx"));
I hope to add ONNX format support to this excellent framework.
ONNX is an open-source and a standard format of AI models.
With ONNX we will be able to share our models between frameworks and programing languages.
The text was updated successfully, but these errors were encountered: