/Netron

Viewer for ONNX neural network models

Primary LanguageJavaScriptMIT LicenseMIT

Netron is a viewer for ONNX neural network models.

Getting Started

Download and install the Netron app for Windows, macOS or Linux from here.

Download example ONNX models here.

Python Model Server

To run Netron in a web browser, install the Python web server using pip:

pip install netron

Launch the model server and open web browser:

netron --browse my_model.onnx

To serve a model from Python code:

import netron

netron.serve_file('my_model.onnx', browse=True)