add pt2tf tool

This commit is contained in:
zxros10
2020-09-23 09:09:49 +08:00
parent 7f7b7df65d
commit 18aefa4dd0
407 changed files with 16211 additions and 0 deletions
@@ -0,0 +1,22 @@
How to implement new op
======
When you get `{} op is not implemented`, you can follow next steps to implement.
Customize op can also be implemented in similar way.
### Backend
1. Verify the latest master version of ONNX is installed on your environment
2. Find specification from [onnx/Operators](https://github.com/onnx/onnx/blob/master/docs/Operators.md).
3. Implement the handler. All inputs and attrs could get from step 2.
```
- add handler to /onnx_tf/handlers/backend/
- in the new handler define a classmethod called version_{version}
* version is the number of since version, which can get from operator's specification
```
4. From within the `onnx_tf` directory, run `gen_opset.py`.
5. From within the `onnx_tf` directory, run `gen_status.py`.
6. From within the `onnx_tf` directory, run `gen_doc.py` if there is any update to CLI or API.
7. Verify the operator's test cases in `test/backend/test_onnx_backend.py` all pass.
8. Add any additional test cases to `test/backend/test_node.py`.