You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
netron-vscode-extension: A vscode extension for netron, support *.pdmodel, *.nb, *.onnx, *.pb, *.h5, *.tflite, *.pth, *.pt, *.mnn, *.tnnproto, *.param, etc. This code is based on [NetronInVSCode](https://github.com/chingweihsu0809/NetronInVSCode) but adds more model format support, such as *.pdmodel, *.nb, *.mnn, *.param, *.tnnproto, etc.
3
+
**netron-vscode-extension**: A vscode extension for netron, support *.pdmodel, *.nb, *.onnx, *.pb, *.h5, *.tflite, *.pth, *.pt, *.mnn, *.tnnproto, *.param, etc. This code is based on [NetronInVSCode](https://github.com/chingweihsu0809/NetronInVSCode) but adds more model format support, such as *.pdmodel, *.nb, *.mnn, *.param, *.tnnproto, etc. **NOTE: This extension is mainly for personal use, and I may not have intensive development plans in the future.**
4
4
5
-
NOTE: This extension is mainly for personal use, and I have no intensive development plans in the future.
5
+
## Features
6
6
7
-
8
-
## TODO
9
7
-[x] add *.pdmodel, *.nb, *.mnn, *.param, *.tnnproto format support
10
8
-[x] remove manually `pip install` requirements
11
-
-[ ] onnx-simplifier support
12
-
-[ ] paddle2onnx converter support
13
-
-[ ] x2paddle converter support
14
-
-[ ] MNN converter support
15
-
-[ ] Optimize some UI components
9
+
-[ ][WIP]onnx-simplifier support
10
+
-[ ][WIP]paddle2onnx converter support
11
+
-[ ][WIP]x2paddle converter support
12
+
-[ ][WIP]MNN converter support
13
+
-[ ][WIP]Optimize some UI components
16
14
17
15
## Install
18
-
- Install `netron-vscode-extension` from VSCode marketplace.
16
+
17
+
- Install `netron-vscode-extension` from [vscode marketplace](https://marketplace.visualstudio.com/items?itemName=DefTruth.netron-vscode-extension).
19
18

20
19
20
+
- Install `Python 3.x` on your computer. The step about netron installation follows is optional. This extension will call netron from python via [node-python-bride](https://github.com/Submersible/node-python-bridge) to form an url which contains the visualized contents, then, pass it to this extension. `netron-vscode-extension` will check whether the netron is avaliable on your python and auto install it if necessary.
21
+
```bash
22
+
python -m pip install netron # optional
23
+
```
24
+
21
25
## Usage
22
26
23
-
- Click on a saved model to see the following.
27
+
- Click on a saved model to see the following, such as [picodet](models/picodet_l_320_coco_lcnet/model.pdmodel), [yolov8n](models/yolov8n.onnx), etc.
24
28

25
29

26
30
@@ -31,9 +35,13 @@ You can build the extension from sources:
0 commit comments