-
Notifications
You must be signed in to change notification settings - Fork 384
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
Change name of arguments in Segmentation and Byol task and add timm support for Byol task #903
Conversation
How hard would it be to split BYOL stuff and Segmentation stuff into separate PRs? |
Don't know but I can do that! But I think I would actually open two new separate PRs and remove this one. That feels the easiest. |
.. code-block:: python | ||
|
||
import timm | ||
print(timm.list_models(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.
Same here, I would suggest listing all available models:
print(timm.list_models(pretrained=True) | |
print(timm.list_models()) |
Also, you were missing a parenthesis
Change the argument name for the tasks according to comment in #854.
segmentation_model -> model
encoder_name -> encoder
Additionally, add timm model support for byol task.