-
Couldn't load subscription status.
- Fork 3.7k
Add LOGISTIC operator to relay tflite frontend #3313
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
python/tvm/relay/frontend/tflite.py
Outdated
|
|
||
| assert isinstance(op, Operator) | ||
| input_tensors = self.get_input_tensors(op) | ||
| print("LOGISTIC") |
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.
Remove it.
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.
removed
python/tvm/relay/frontend/tflite.py
Outdated
| assert isinstance(op, Operator) | ||
| input_tensors = self.get_input_tensors(op) | ||
| print("LOGISTIC") | ||
| for i in input_tensors: |
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.
Remove it
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.
removed
cab81a9 to
e31f6ac
Compare
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
|
pls fix ci |
e31f6ac to
4dbfce7
Compare
|
The test which I added run successfully |
|
Opened issue "Too small time limit for frontend: GPU integration test" #3334 |
4dbfce7 to
393212f
Compare
393212f to
25cbd72
Compare
LOGISTIC operator is used in TFLite SSD Resnet50 and Mobilenet models.
Model graph: ssd_resnet_50_fpn_coco_nopp.tflite.pdf
This PR adds LOGISTIC operator support to relay tflite frontend.