Inspirational Post : Use ONNX Runtime in Flutter My .net Application Grab the simplest ONNX model on the shelf It's not a model package yet: it's python source, you need to compile it! To use python in Windows it's better for your health to use WSL (linux subsitem for windows) with any Ubuntu, follow readme for compile instructions. Inspect the resulting .onnx file with netron.app Tweak the model nodes and say "hey mama! I won the machile learning!" graph = helper.make_graph( [ # nodes helper.make_node("Add", ["A", "B"], ["C"], "Add1"), helper.make_node("Add", ["C", "E"], ["F"], "Add2"), ], "SingleAdd", # name [ # inputs helper.make_tensor_value_info('A', TensorProto.FLOAT, [1]), helper.make_tensor_value_info('B', TensorProto.FLOAT, [1]), helper.make_tensor_value_info('E',...
un blog tecnico di Mauro