sahooora
sahooora
Below there is the snippet of code I use for import and conversion: ``` import onnx from onnx2keras import onnx_to_keras onnx_model = onxx.load('UCI_simplification_1.onnx') k_model = onnx_to_keras(onnx_model, ['input_1']) ``` When I...
Hello, I converted my onnx model to a tensorflow model(`'saved_model'` in the code) using you library. It's successfully done. But in the following piece of code when I used the...
Hi, Thanks for your work. I have a C code with variables in float3 data type. So I included float3.h header file in my code and compiled it with g++....