-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
timm upgrade 0.6.12 #696
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
timm upgrade 0.6.12 #696
Conversation
Hi Vadim, |
Need to update Python version in CI |
@qubvel, could you reveal some details a bit regrading mentioned |
Both
But, you have more options using |
It looks like PR-694 broke formatting |
EfficientNet act1 layer in timm is merged with bn1 layer after ab49d275de8a9c344aea086fd86d04c4cabb6098 commit
`zero_init_last_bn` was renamed to `zero_init_last` in 372ad5fa0dbeb74dcec81db06e9ff69b3d5a2eb6 commit
Instead of plain dict config RegNet uses RegNetCfg dataclass. Dataclasses module were added in Python 3.7, thats why min required Python version for package is also increased.
c8eade3
to
a545e6f
Compare
@qubvel I've rebased on the latest commit in the master branch. Can you trigger a workflow? |
Thanks a lot, merged! |
This patch resolves compatibility issues after timm upgrade to 0.6.12 release.
Unfortunately, RegNet in 0.6.12 uses RegNetCfg dataclass instead of plain dict as cfg parameter (related commit).
This requires min Python version change to 3.7 (when dataclass module was introduced).
Related issue 620