Fără Descriere

Lutz Roeder 38de48dadd Add Properties button 8 ani în urmă
.vscode 1a3875886e first commit 8 ani în urmă
media 53f370cdb0 Update screenshot and logo 8 ani în urmă
setup e4e4bc7743 Move electron-builder setup files to /setup 8 ani în urmă
src 38de48dadd Add Properties button 8 ani în urmă
tools ba386088a1 onnx-generate to use ONNX_ML=1 8 ani în urmă
.gitignore 4045eb9686 Update .gitignore 8 ani în urmă
LICENSE 0157c86a27 Update license 9 ani în urmă
README.md 7ad70c24a6 Update README.md 8 ani în urmă
package.json b6c2e20af3 Update to 0.5.2 8 ani în urmă
setup.cfg 7d9e677e20 Write .egg-info to /tmp 8 ani în urmă
setup.py db9642b3d5 Use webbrowser.open() in netron.py 8 ani în urmă

README.md

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)