Skip to content

Commit

Permalink
Merge pull request qubvel#53 from qubvel/release
Browse files Browse the repository at this point in the history
Release 0.2.0
  • Loading branch information
qubvel authored Feb 17, 2019
2 parents 507aa38 + 2bfbf33 commit 3a33a06
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
# Change Log

**Version 0.2.0**

###### Areas of improvement

- New backbones (SE-ResNets, SE-ResNeXts, SENet154, MobileNets)
- Metrcis:
- `iou_score` / `jaccard_score`
- `f_score` / `dice_score`
- Losses:
- `jaccard_loss`
- `bce_jaccard_loss`
- `cce_jaccard_loss`
- `dice_loss`
- `bce_dice_loss`
- `cce_dice_loss`
- Documentation [Read the Docs](https://segmentation-models.readthedocs.io)
- Tests + Travis-CI

###### API changes

- Some parameters renamed (see API docs)
- `encoder_freeze=True` does not `freeze` BatchNormalization layer of encoder

###### Thanks

[@IlyaOvodov](https://github.com/IlyaOvodov) [#15](https://github.com/qubvel/segmentation_models/issues/15) [#37](https://github.com/qubvel/segmentation_models/pull/37) investigation of `align_corners` parameter in `ResizeImage` layer
[@NiklasDL](https://github.com/NiklasDL) [#29](https://github.com/qubvel/segmentation_models/issues/29) investigation about convolution kernel in PSPNet final layers

**Version 0.1.2**

###### Areas of improvement
Expand Down
2 changes: 1 addition & 1 deletion segmentation_models/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (0, 1, 2)
VERSION = (0, 2, 0)

__version__ = '.'.join(map(str, VERSION))
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def run(self):
version=about['__version__'],
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
long_description_content_type='text/x-rst',
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
Expand Down

0 comments on commit 3a33a06

Please sign in to comment.