Skip to content

Commit 6fecc72

Browse files
authored
Release v1.0.0 (#228)
* Version 1.0.0 * Update requirements.txt * Add distributions: "sdist bdist_wheel" * Fix missing requirements.txt * Update CHANGELOG.md
1 parent 883adef commit 6fecc72

File tree

5 files changed

+22
-5
lines changed

5 files changed

+22
-5
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,5 @@ deploy:
7171
secure: QA/UJmkXGlXy/6C8X0E/bPf4izu3rJsztaEmqIM1npxPiv2Uf4WFs43vxkMXwfHrflocdfw8SBM8bWnbunGT2SvDdo/MMCMpol7unE74T/RbODYl6aiJWVM3QKOXL8pQD0oQ+03L1YK3nCeSQdePINEPmuFmvwyO40q8Dwv8HBZIGZlEo4SK4xr8ekxfmtbezxQ7vUL3sNcvCJDXrZX/4UdXrhdRk+zYoN3dv8NmM4FmChajq/m5Am9OPdbdUBHmIYmvk7L3IpwJeMMpG5FVdGNVwYj7XNHlcy+KZ2/CKn9EpslRDPxY4650654PmhSZWDctZG7jiFWLCZBUvowiyAOPZknZNgdu5gJAfdg37XS9IP3HgTZN6Jb5Bm0by3IlKt+dTzyJQcUnRql5B1wwEI0XO3/YWQe1GQQphIO1bli9hT8n8xNDNjc49vDlu4zKyaYnQmLhqNxkyeruXSTpc8qTITuS+EGgkAUrrBj/IaFcutIg9WOzvJ3nZO8X8UG7LlyQx4AOpfHP6bynAmlT+UFccCEq66Zoh7teWLk0lUekuYST2iQJ3pwFoQGYJRCsmxsz7J0B9ayFVVT/fg+GZpZm1oTnnJ27hh8LZWv/Cr/WHOBYc3qvigWx4pDssJ+O6z7de3aWrGvzAVgXr190fRdP55a34HhNbiKZ0YWmrTs=
7272
on:
7373
tags: true
74-
skip_existing: true
74+
skip_existing: true
75+
distributions: "sdist bdist_wheel"

CHANGELOG.md

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

3+
**Version 1.0.0**
4+
5+
###### Areas of improvement
6+
- Support for `keras` and `tf.keras`
7+
- Losses as classes, base loss operations (sum of losses, multiplied loss)
8+
- NCHW and NHWC support
9+
- Removed pure tf operations to work with other keras backends
10+
- Reduced a number of custom objects for better models serialization and deserialization
11+
12+
###### New featrues
13+
- New backbones: EfficentNetB[0-7]
14+
- New loss function: Focal loss
15+
- New metrics: Precision, Recall
16+
17+
###### API changes
18+
- `get_preprocessing` moved from `sm.backbones.get_preprocessing` to `sm.get_preprocessing`
319

420
**Version 0.2.1**
521

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include README.md LICENSE
1+
include README.md LICENSE requirements.txt

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
keras_applications>=1.0.7,<=1.0.8
2-
image-classifiers==1.0.0b1
3-
efficientnet==1.0.0b3
2+
image-classifiers==1.0.0
3+
efficientnet==1.0.0

segmentation_models/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION = (1, 0, '0b1')
1+
VERSION = (1, 0, 0)
22

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

0 commit comments

Comments
 (0)