-
Notifications
You must be signed in to change notification settings - Fork 190
Documentation updates #35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
sidgoyal78
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, just a minor paraphrasing suggestion.
README.md
Outdated
| ## Status | ||
|
|
||
| ## Testing | ||
| Targets Paddle->ONNX conversion for now (or what's called **frontend** in the ONNX world), and will consequently support the reverse too. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe targets -> "The current release targets"?
kuke
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Almost LGTM
README.md
Outdated
| python validate.py --fluid_model <path_to_paddlepaddle_fluid.model> --onnx_model <path_to_exported_model.onnx> | ||
| ``` | ||
|
|
||
| This validation aims for an output tensor comparison precision at 5-decimal places. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
-> at 5-decimal places by default. About more arguments, please run
python validate.py --help
README.md
Outdated
| - Read the documents in the `How it works` section above. | ||
| - (Optional) Create an issue sharing need for support for a new model. Assign to yourself. | ||
| - Add the necessary operator conversion logic in `fluid_onnx/ops.py`. | ||
| - Write tests for the newly introduce operator convertors. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
introduced operator conversion function
Just making the initial work visible, lots more to come