Skip to content

Commit

Permalink
chore(version): v0.15.0
Browse files Browse the repository at this point in the history
* New features
  * perf(model): add load_pretrained_weights func
  * perf(base_recognizer.py): update _init_weights
  * feat(tools): add_md5_for_pths
  * perf(config): add cfg.DATASET.KEEP_RGB to keep RGB data format or not…
    * Default is False
* Bug fixes
  * perf(checkpoint): adapt to the latest torchvision version
    * prevent error: "from torch.utils.model_zoo import load_url as load_state_dict_from_url"
  * fix(heads): use cfg.MODEL.HEAD.NUM_CLASSES in head definition
  * fix(trainer.py): fix max_iter calculate
* Breaking changes.
  • Loading branch information
zjykzj committed Dec 9, 2021
1 parent d301059 commit c1aaf1a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# CHANGE

## v0.15.0

* New features
* perf(model): add load_pretrained_weights func
* perf(base_recognizer.py): update _init_weights
* feat(tools): add_md5_for_pths
* perf(config): add cfg.DATASET.KEEP_RGB to keep RGB data format or not…
* Default is False
* Bug fixes
* perf(checkpoint): adapt to the latest torchvision version
* prevent error: "from torch.utils.model_zoo import load_url as load_state_dict_from_url"
* fix(heads): use cfg.MODEL.HEAD.NUM_CLASSES in head definition
* fix(trainer.py): fix max_iter calculate
* Breaking changes.

## v0.14.0

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ZCls(v0.14.0)
# ZCls(v0.15.0)

Welcome to zcls, a classification model training/inferring framework.

Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ site_dir: 'site'
# 额外信息
extra:
# 版本号
version: 0.14.0
version: 0.15.0
# 主题
theme:
# name: 'readthedocs'
Expand Down
2 changes: 1 addition & 1 deletion zcls/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
@description:
"""

__version__ = '0.14.0'
__version__ = '0.15.0'

0 comments on commit c1aaf1a

Please sign in to comment.