-
Notifications
You must be signed in to change notification settings - Fork 613
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
Fix Deformable Convolutional Op Support #179 #1056
Fix Deformable Convolutional Op Support #179 #1056
Conversation
* added TQDMProgressBar and tutorial
* CLN: Refactor f_scores and f_test * Add `threshold` param to f-scores * Tests now compare with sklearn * Add sklearn to requirements * Format files * Add F1 score test * Register FBetaScore and F1Score as Keras custom objects * Update readme to separate both metrics * Add test for F1-score get_config * FIX: Use sk_score for true value * Remove sklearn from f_test Resort to using hard coded test cases rather than comparing with sklearn * Remove unused import * Rename test_keras_model -> _get_model
* FIX: Internally cast to required DType * Add pylint disable for unscriptable-object bug
* Remove test skips since upstream fix * Use public keras object registration * Merge master and update registration * Fix tf import * Update READMEs * F scores keras registration * Lint
* fix overflow of int32
* fix links * missing import lamb * reorder
* Make the first dimension `None` to support invariant batch size. * Add test case to check compatibility of WeightNormalization with TimeDistributed.
* Add cyclical learning rate schedulers
* Build data_init layer under name_scope The original wrapped layer and the non-trainable layer created for data dependent initialization had a clash in their namespaces. Creating the second layer under a name scope of 'data_dep_init' fixes the issue. * Lint * Add test for saving * Use create_tempfile
* sharding over pixel * robust test on cpu * fix typo
* add mcc py * update & test file * test file revision * indention * revise * build file * change dtype * remove type * correct numerator multiplication * code format check * format * minor * minor * modify doc * sample weight * import * layers * avoid using get_shape * multi-class for true_negative * correct true negative * updae README and add test case * minor fixing multi-lines * output dtype * move docstring to exact place and keep data type as optional * minor change using tf api * revision * tf api and minor revision
* fix keras model compile * checkout pylint change * disable pylint * make linter happy
Note that during the transition period tstring is typedef'ed to std::string. See: tensorflow/community#91
* Don't build parse_time till TF r2.1 * Fix TODO, and BUILD * Remove .py file from build target
* Add GIOU loss * Refact giou calculate * Fix doc * Update Readme.md * Format code * refact calculate * fix document * fix readme * fix docs * Change to official api * format code * enhance robust * add box format * add keras test * add one bbox test * add different shapes test case * format code * fix docs * make private * add interger test * format code * change expression
* add resampler kernel * add register op * namespace and register * python format * headers and cleanup * sanity cleanup * readme update * alphabetic order * gpu test & minor revision * comment on wrapping part * cpu test * miscellaneous fixing * minior fix * line removal
Check out this pull request on You'll be able to see Jupyter notebook diff and discuss changes. Powered by ReviewNB. |
CLAs look good, thanks! ℹ️ Googlers: Go here for more info. |
Thank you very much for the contribution @smallsunsun1 ! Just wanted to comment and say we'll get to reviewing this as soon as time allows. |
We found a Contributor License Agreement for you (the sender of this pull request), but were unable to find agreements for all the commit author(s) or Co-authors. If you authored these, maybe you used a different email address in the git commits than was used to sign the CLA (login here to double check)? If these were authored by someone else, then they will need to sign a CLA as well, and confirm that they're okay with these being contributed to Google. ℹ️ Googlers: Go here for more info. |
@googlebot I fixed it. |
@seanpmorgan . I add a EquiConv according to https://arxiv.org/pdf/1903.08094.pdf. But when i commit, |
close this and reopen a new pull request #1129 with support for EquiConv |
Add cpu and gpu implementation for Deformable Conv2d and DeformablePSROIAlign according to https://arxiv.org/abs/1811.11168