Skip to content

Commit d513142

Browse files
authored
Release/v0.2.1 (#107)
- Added `set_regularization` function - Added `beta` argument to dice loss - Added `threshold` argument for metrics - Fixed `prerprocess_input` for mobilenets - Fixed missing parameter `interpolation` in `ResizeImage` layer config - Some minor improvements in docs, fixed typos
1 parent a08ba93 commit d513142

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change Log
22

3+
4+
**Version 0.2.1**
5+
6+
###### Areas of improvement
7+
8+
- Added `set_regularization` function
9+
- Added `beta` argument to dice loss
10+
- Added `threshold` argument for metrics
11+
- Fixed `prerprocess_input` for mobilenets
12+
- Fixed missing parameter `interpolation` in `ResizeImage` layer config
13+
- Some minor improvements in docs, fixed typos
14+
315
**Version 0.2.0**
416

517
###### Areas of improvement

segmentation_models/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION = (0, 2, 0)
1+
VERSION = (0, 2, 1)
22

3-
__version__ = '.'.join(map(str, VERSION))
3+
__version__ = '.'.join(map(str, VERSION))

0 commit comments

Comments
 (0)