update docs (readme, to_do and update_log)
parent
f707b86d2c
commit
c58afa99ee
@ -1,6 +1,8 @@
|
||||
__pycache__/
|
||||
*/__pycache__/
|
||||
gym/
|
||||
*ppt
|
||||
*pptx
|
||||
|
||||
*.onnx
|
||||
*.onnx
|
||||
/test_onnx/
|
||||
/modified_onnx/
|
||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1,39 @@
|
||||
# TODO
|
||||
|
||||
- support desktop application.
|
||||
|
||||
- support adding more complicated nodes (which has some simple parameters).
|
||||
|
||||
- support combine models.
|
||||
|
||||
- support user-defined input/output number when the type of node's input/output is list.
|
||||
|
||||
- slim the codes.
|
||||
- because some `.js` files (like electron.js and even python.js) in the `static` folder and `electron.html` in `templates` folder are legacy of Netron and can be further slimmed.
|
||||
|
||||
|
||||
# Some known reference issues/feature requests
|
||||
|
||||
- add node (experimentally supported)
|
||||
|
||||
- (extend output's dim): https://github.com/onnx/onnx/issues/2709
|
||||
|
||||
- add node (NMS): https://github.com/onnx/onnx/issues/2216
|
||||
|
||||
- add node (add preprocess nodes): https://zhuanlan.zhihu.com/p/394395167
|
||||
|
||||
combine models (not supported):
|
||||
|
||||
- https://stackoverflow.com/questions/66178085/can-i-combine-two-onnx-graphs-together-passing-the-output-from-one-as-input-to
|
||||
|
||||
- https://www.zhihu.com/people/kai-xin-zui-zhong-yao-76/posts
|
||||
|
||||
- modify attribute of nodes (supported)
|
||||
|
||||
- topk: https://github.com/onnx/onnx/issues/2921
|
||||
|
||||
- remove layer (supported): https://github.com/onnx/onnx/issues/2638
|
||||
|
||||
|
||||
|
||||
|
||||
@ -0,0 +1,21 @@
|
||||
# onnx-modifier update log
|
||||
|
||||
## 20220612
|
||||
- update graph automatically as soon as a modification is invoked.
|
||||
- fix `shared arguments` issue.
|
||||
- support editing the attributes and the name of inputs/outputs directly in the placeholders in the sidebar.
|
||||
- newly support features:
|
||||
- Add new nodes.
|
||||
- edit the attributes of nodes.
|
||||
- re-organize the layouts of buttons.
|
||||
|
||||
## 20220510
|
||||
fix external data loading error for unix platform.
|
||||
|
||||
## 20220501
|
||||
- the first public version.
|
||||
- support features:
|
||||
- delete/recover node.
|
||||
- rename the input and output of nodes.
|
||||
- use sweetalert for nice alert.
|
||||
|
||||
Loading…
Reference in New Issue