-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Add parser support for CAST tflite operator #4096
Conversation
Thanks for contributing, please request reviews from reviewers |
@FrozenGene @kevinthesun can you please take a look at this patch |
This implementation provides cast to limited number of dtypes that tflite currently supports for placeholder op. Add INT64 in the possible dtypes as it appears to be supported accrording to tlfite schema.
@FrozenGene as you suggested the dtype enumeration dictionary is now removed and instead I use get_tensor_type_str |
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. Thanks!
Thanks @FrozenGene @inadob |
This implementation provides cast to limited number of dtypes that tflite currently supports for placeholder op. Add INT64 in the possible dtypes as it appears to be supported accrording to tlfite schema.
This implementation provides cast to limited number of dtypes that tflite currently supports for placeholder op. Add INT64 in the possible dtypes as it appears to be supported accrording to tlfite schema.
This implementation provides cast to limited number of dtypes that tflite
currently supports for placeholder op. The encoding values for
placeholder dtypes are taken from the tflite flatbuff schema.