Skip to content

Commit

Permalink
Release/v0.2.1 (#107)
Browse files Browse the repository at this point in the history
 - 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
  • Loading branch information
qubvel committed May 23, 2019
1 parent a08ba93 commit d513142
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log


**Version 0.2.1**

###### Areas of improvement

- 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

**Version 0.2.0**

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

__version__ = '.'.join(map(str, VERSION))
__version__ = '.'.join(map(str, VERSION))

0 comments on commit d513142

Please sign in to comment.