Is there any way to run ONNX with JAVA 7? #8558
-
Hello, We want to export a sklearn model and then run it with the JAVA runtime. Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The ONNX Runtime Java API has always required Java 8, it was added in 2019, 4 years after Java 7 stopped receiving public updates. You might be able to get rid of the small number of Optional uses and recompile it for Java 7, but if you hit any issues you're on your own. |
Beta Was this translation helpful? Give feedback.
The ONNX Runtime Java API has always required Java 8, it was added in 2019, 4 years after Java 7 stopped receiving public updates. You might be able to get rid of the small number of Optional uses and recompile it for Java 7, but if you hit any issues you're on your own.