Skip to content

Commit 8504b6c

Browse files
committed
[Extension] publish version 0.0.3 -> vscode marketplace
1 parent 37a5b32 commit 8504b6c

File tree

5 files changed

+22
-14
lines changed

5 files changed

+22
-14
lines changed

README.md

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,30 @@
11
![](docs/logo-v3.png)
22

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.
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.**
44

5-
NOTE: This extension is mainly for personal use, and I have no intensive development plans in the future.
5+
## Features
66

7-
8-
## TODO
97
- [x] add *.pdmodel, *.nb, *.mnn, *.param, *.tnnproto format support
108
- [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
1614

1715
## 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).
1918
![](docs/install.png)
2019

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+
2125
## Usage
2226

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.
2428
![](docs/example.gif)
2529
![](docs/picodet.png)
2630

@@ -31,9 +35,13 @@ You can build the extension from sources:
3135
- `npm install`
3236
- `F5` to start debugging
3337

38+
## LICENSE
39+
40+
The codes is released under the MIT License.
41+
3442
## Reference
3543

3644
- [netron](https://github.com/lutzroeder/netron)
3745
- [node-python-bride](https://github.com/Submersible/node-python-bridge)
3846
- [vscode-extension-samples](https://github.com/microsoft/vscode-extension-samples)
39-
- [NetronInVSCode](https://github.com/chingweihsu0809/NetronInVSCode)
47+
- [NetronInVSCode](https://github.com/chingweihsu0809/NetronInVSCode)

docs/.DS_Store

-6 KB
Binary file not shown.

docs/install.png

75.8 KB
Loading

docs/logo.png

346 Bytes
Loading

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "netron-vscode-extension",
33
"displayName": "netron-vscode-extension",
4-
"description": "Implmentation of visualizing ML Models in VSCode using Netron",
5-
"version": "0.0.2",
4+
"description": "Visualizing ML/DL Models in VSCode using Netron",
5+
"version": "0.0.3",
66
"publisher": "DefTruth",
77
"private": true,
88
"license": "MIT",

0 commit comments

Comments
 (0)