Skip to content

Commit 0265b61

Browse files
authored
Release v0.1.1 (#263)
* Update README.md * Update __version__.py * Update README.md
1 parent f929a18 commit 0265b61

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Segmentation based on [PyTorch](https://pytorch.org/).**
1111
The main features of this library are:
1212

1313
- High level API (just two lines to create neural network)
14-
- 5 models architectures for binary and multi class segmentation (including legendary Unet)
15-
- 46 available encoders for each architecture
14+
- 7 models architectures for binary and multi class segmentation (including legendary Unet)
15+
- 57 available encoders for each architecture
1616
- All encoders have pre-trained weights for faster and better convergence
1717

1818
### Table of content
@@ -68,7 +68,7 @@ preprocess_input = get_preprocessing_fn('resnet18', pretrained='imagenet')
6868
- [FPN](http://presentations.cocodataset.org/COCO17-Stuff-FAIR.pdf)
6969
- [PSPNet](https://arxiv.org/abs/1612.01105)
7070
- [PAN](https://arxiv.org/abs/1805.10180)
71-
- [DeepLabV3](https://arxiv.org/abs/1706.05587)
71+
- [DeepLabV3](https://arxiv.org/abs/1706.05587) and [DeepLabV3+](https://arxiv.org/abs/1802.02611)
7272

7373
#### Encoders <a name="encoders"></a>
7474

@@ -132,7 +132,7 @@ preprocess_input = get_preprocessing_fn('resnet18', pretrained='imagenet')
132132
|timm-efficientnet-b8 |imagenet<br>advprop |84M |
133133
|timm-efficientnet-l2 |noisy-student |474M |
134134

135-
\* `ssl`, `wsl` from [here](https://github.com/facebookresearch/semi-supervised-ImageNet1K-models).
135+
\* `ssl`, `wsl` - semi-supervised and weakly-supervised learning on ImageNet ([repo](https://github.com/facebookresearch/semi-supervised-ImageNet1K-models)).
136136

137137
### Models API <a name="api"></a>
138138

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION = (0, 1, 0)
1+
VERSION = (0, 1, 1)
22

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

0 commit comments

Comments
 (0)