From bf5a15696d2638f7ba8bff5951bf7a14156fc03e Mon Sep 17 00:00:00 2001 From: Pavel Yakubovskiy Date: Sat, 26 Sep 2020 15:51:39 +0300 Subject: [PATCH 1/3] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8d6d634d..17085a00 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ Segmentation based on [PyTorch](https://pytorch.org/).** The main features of this library are: - High level API (just two lines to create neural network) - - 5 models architectures for binary and multi class segmentation (including legendary Unet) - - 46 available encoders for each architecture + - 7 models architectures for binary and multi class segmentation (including legendary Unet) + - 57 available encoders for each architecture - All encoders have pre-trained weights for faster and better convergence ### Table of content @@ -68,7 +68,7 @@ preprocess_input = get_preprocessing_fn('resnet18', pretrained='imagenet') - [FPN](http://presentations.cocodataset.org/COCO17-Stuff-FAIR.pdf) - [PSPNet](https://arxiv.org/abs/1612.01105) - [PAN](https://arxiv.org/abs/1805.10180) - - [DeepLabV3](https://arxiv.org/abs/1706.05587) + - [DeepLabV3](https://arxiv.org/abs/1706.05587) [DeepLabV3+](https://arxiv.org/abs/1802.02611) #### Encoders From 69be3c93a26f5203b4937491b3559a1783207bae Mon Sep 17 00:00:00 2001 From: Pavel Yakubovskiy Date: Sat, 26 Sep 2020 15:52:13 +0300 Subject: [PATCH 2/3] Update __version__.py --- segmentation_models_pytorch/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/segmentation_models_pytorch/__version__.py b/segmentation_models_pytorch/__version__.py index 73415624..1f1760fa 100644 --- a/segmentation_models_pytorch/__version__.py +++ b/segmentation_models_pytorch/__version__.py @@ -1,3 +1,3 @@ -VERSION = (0, 1, 0) +VERSION = (0, 1, 1) __version__ = '.'.join(map(str, VERSION)) From c8682b39f8165e3f9f14c79389849c0a5119366c Mon Sep 17 00:00:00 2001 From: Pavel Yakubovskiy Date: Sat, 26 Sep 2020 15:56:23 +0300 Subject: [PATCH 3/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 17085a00..4aa4ce69 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ preprocess_input = get_preprocessing_fn('resnet18', pretrained='imagenet') - [FPN](http://presentations.cocodataset.org/COCO17-Stuff-FAIR.pdf) - [PSPNet](https://arxiv.org/abs/1612.01105) - [PAN](https://arxiv.org/abs/1805.10180) - - [DeepLabV3](https://arxiv.org/abs/1706.05587) [DeepLabV3+](https://arxiv.org/abs/1802.02611) + - [DeepLabV3](https://arxiv.org/abs/1706.05587) and [DeepLabV3+](https://arxiv.org/abs/1802.02611) #### Encoders @@ -132,7 +132,7 @@ preprocess_input = get_preprocessing_fn('resnet18', pretrained='imagenet') |timm-efficientnet-b8 |imagenet
advprop |84M | |timm-efficientnet-l2 |noisy-student |474M | -\* `ssl`, `wsl` from [here](https://github.com/facebookresearch/semi-supervised-ImageNet1K-models). +\* `ssl`, `wsl` - semi-supervised and weakly-supervised learning on ImageNet ([repo](https://github.com/facebookresearch/semi-supervised-ImageNet1K-models)). ### Models API