Skip to content

Commit

Permalink
release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
qubvel committed Sep 12, 2018
1 parent 9a54a84 commit dcd7153
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,13 @@ model.fit(x, y, epochs=100)
- [x] Add Linknet models
- [ ] Add PSP models
- [ ] Add DPN backbones

### Change Log

**Version 0.1.1**
- Added `Linknet` model
- Keras 2.2+ compatibility (fixed import of `_obtain_input_shape`)
- Small code improvements and bug fixes

**Version 0.1.0**
- `Unet` and `FPN` models
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, 0)
VERSION = (0, 1, 1)

__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 @@ -22,7 +22,7 @@

# What packages are required for this module to be executed?
REQUIRED = [
# 'requests', 'maya', 'records',
# 'keras>=2.1.0', 'tensorflow>=1.4.0'
]

# What packages are optional?
Expand Down

0 comments on commit dcd7153

Please sign in to comment.