Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
jph00 committed Apr 30, 2022
1 parent d60efaa commit 0a4bb28
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -2,7 +2,7 @@

<!-- do not remove -->

## 2.6.1
## 2.6.2

### Bugs Squashed

Expand Down
2 changes: 1 addition & 1 deletion fastai/__init__.py
@@ -1,2 +1,2 @@
__version__ = "2.6.1"
__version__ = "2.6.2"

1 change: 1 addition & 0 deletions fastai/learner.py
Expand Up @@ -392,6 +392,7 @@ def load_learner(fname, cpu=True, pickle_module=pickle):
res.dls.cpu()
if hasattr(res, 'mixed_precision'): res = res.to_fp32()
elif hasattr(res, 'non_native_mixed_precision'): res = res.to_non_native_fp32()
res.lock = threading.Lock()
return res

# Cell
Expand Down
1 change: 1 addition & 0 deletions nbs/13a_learner.ipynb
Expand Up @@ -1861,6 +1861,7 @@
" res.dls.cpu()\n",
" if hasattr(res, 'mixed_precision'): res = res.to_fp32()\n",
" elif hasattr(res, 'non_native_mixed_precision'): res = res.to_non_native_fp32()\n",
" res.lock = threading.Lock()\n",
" return res"
]
},
Expand Down
2 changes: 1 addition & 1 deletion settings.ini
Expand Up @@ -2,7 +2,7 @@
lib_name = fastai
user = fastai
branch = master
version = 2.6.1
version = 2.6.2
description = fastai simplifies training fast and accurate neural nets using modern best practices
keywords = fastai, deep learning, machine learning
author = Jeremy Howard, Sylvain Gugger, and contributors
Expand Down

0 comments on commit 0a4bb28

Please sign in to comment.