Lutz Roeder 8 лет назад
Родитель
Сommit
e6665a4e5c
1 измененных файлов с 19 добавлено и 7 удалено
  1. 19 7
      README.md

+ 19 - 7
README.md

@@ -5,28 +5,40 @@ Netron is a viewer for [ONNX](http://onnx.ai) neural network models.
 
 
 <p align='center'><a href='https://www.lutzroeder.com/ai'><img src='media/screenshot.png' width='800'></a></p>
 <p align='center'><a href='https://www.lutzroeder.com/ai'><img src='media/screenshot.png' width='800'></a></p>
 
 
-## Getting Started
+## Install
 
 
-Download and install the Netron app for Windows, macOS or Linux from [here](https://github.com/lutzroeder/Netron/releases).
+### macOS
 
 
-Download example ONNX models [here](https://github.com/onnx/models).
+[**Download**](https://github.com/lutzroeder/Netron/releases/latest) the `.dmg` file or with [Homebrew](https://caskroom.github.io) run `brew cask install netron`
 
 
-## Python Model Server 
+### Linux
+
+[**Download**](https://github.com/lutzroeder/Netron/releases/latest) the `.AppImage` or `.deb` file. The `.AppImage` needs to be made [executable](http://discourse.appimage.org/t/how-to-make-an-appimage-executable/80) after download.
+
+### Windows
+
+[**Download**](https://github.com/lutzroeder/Netron/releases/latest) the `.exe` file.
+
+## Models
+
+Download sample ONNX model files [here](https://github.com/onnx/models).
+
+## Install Python Model Server 
 
 
 To run Netron in a web browser, install the Python web server using pip: 
 To run Netron in a web browser, install the Python web server using pip: 
 ```
 ```
 pip install netron
 pip install netron
 ```
 ```
 
 
-Launch the model server and open web browser:
+Launch the model server:
 
 
 ```
 ```
-netron --browse my_model.onnx
+netron my_model.onnx
 ```
 ```
 
 
 To serve a model from Python code:
 To serve a model from Python code:
 ```
 ```
 import netron
 import netron
 
 
-netron.serve_file('my_model.onnx', browse=True)
+netron.serve_file('my_model.onnx')
 ```
 ```