-
Notifications
You must be signed in to change notification settings - Fork 23
Add MobileNet v3 model family #237
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 MobileNet v3 model family #237
Conversation
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.
praise Nice model addition !
todo import need fixing (see inline)
R/models-mobilenetv3.R
Outdated
#' @examples | ||
#' \dontrun{ | ||
#' # For pretrained weights mobilenet_v3_large | ||
#' model_large <- model_mobilenet_v3_large(pretrained = TRUE) |
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.
todo example fails with
model_large <- model_mobilenet_v3_large(pretrained = TRUE)
Erreur dans initialize(...) : objet 'nn_hardswish' introuvable
>
suggestion should be linked to the remark on import from...
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.
I have updated the @importFrom
, and have also run the code. Now it works properly. Thanks for finding the bug.
Do let me know if the error still persists.
…eashed/torchvision into feat/mobilenetv3Model
I have also switched to a much more useful example in the documentation.Do let me know if you want me to revert back to the previous example. |
This PR adds two models:
with pretrained weights from
This PR also includes documentation and tests for the above mentioned models.
Closes #200