-
Notifications
You must be signed in to change notification settings - Fork 617
Implement Addons>ParseTime operator. #530
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
Hi @helinwang, first glance at the PR looks very good. Could you run |
Thanks @seanpmorgan ! Done. |
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.
Thank you for the PR. I leave some comments here :-)
tensorflow_addons/custom_ops/text/cc/kernels/parse_time_kernel.cc
Outdated
Show resolved
Hide resolved
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.
tensorflow_addons/custom_ops/text/cc/kernels/parse_time_kernel.cc
Outdated
Show resolved
Hide resolved
271d168
to
7f5a32f
Compare
d9fdaab
to
99a897d
Compare
Thanks everyone, for the detailed review! All comments resolved. |
The parse time operator parses an input string according to the provided format string into a Unix time, the number of seconds / milliseconds / microseconds / nanoseconds elapsed since January 1, 1970 UTC. Fixes: tensorflow#492
@WindQAQ could you help add the "kokoro:force-run" tag again? I force pushed the commit again to fix a code style issue which failed the CI test. Thanks! |
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.
Thanks! Nice PR. @facaiy feel free to merge it after you take a look :-)
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.
Thank you, Helin 😄
@helinwang Please update readme and codeowner file when time allows :-) |
The parse time operator parses an input string according to the
provided format string into a Unix time, the number of seconds /
milliseconds / microseconds / nanoseconds elapsed since January 1,
1970 UTC.
Fixes: #492