File tree Expand file tree Collapse file tree 5 files changed +16
-8
lines changed Expand file tree Collapse file tree 5 files changed +16
-8
lines changed Original file line number Diff line number Diff line change
1
+
2
+ <a id =' changelog-0.1.12 ' ></a >
3
+ # 0.1.12 — 2022-11-25
4
+
5
+ ## Features
6
+
7
+ - Add option to return encoder features, and decoder features along the outputs in the forward pass of any model.
8
+
9
+ ## Fixes
10
+
11
+ - Turn the ` cellpose ` and ` stardist ` postproc dirs into modules.
1
12
<a id =' changelog-0.1.12 ' ></a >
2
13
3
14
# 0.1.12 — 2022-11-03
Original file line number Diff line number Diff line change 9
9
[ ![ Python - Version] ( https://img.shields.io/badge/PYTHON-3.7+-red?style=for-the-badge&logo=python&logoColor=white )] ( https://www.python.org/ )
10
10
<br >
11
11
[ ![ Github Test] ( https://img.shields.io/github/workflow/status/okunator/cellseg_models.pytorch/Tests?label=Tests&logo=github&style=for-the-badge )] ( https://github.com/okunator/cellseg_models.pytorch/actions/workflows/tests.yml )
12
- [ ![ Code style: black] ( https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge )] ( https://github.com/psf/black )
13
- [ ![ Codecov] ( https://img.shields.io/codecov/c/github/okunator/cellseg_models.pytorch?logo=codecov&style=for-the-badge&token=oGSj7FZ1lm )] ( https://codecov.io/gh/okunator/cellseg_models.pytorch )
14
- <br >
15
12
[ ![ Pypi] ( https://img.shields.io/pypi/v/cellseg-models-pytorch?color=blue&logo=pypi&style=for-the-badge )] ( https://pypi.org/project/cellseg-models-pytorch/ )
13
+ [ ![ Codecov] ( https://img.shields.io/codecov/c/github/okunator/cellseg_models.pytorch?logo=codecov&style=for-the-badge&token=oGSj7FZ1lm )] ( https://codecov.io/gh/okunator/cellseg_models.pytorch )
16
14
<br >
17
15
[ ![ DOI] ( https://zenodo.org/badge/450787123.svg )] ( https://zenodo.org/badge/latestdoi/450787123 )
18
16
39
37
- Popular training losses and benchmarking metrics.
40
38
- Simple model training with [ pytorch-lightning] ( https://www.pytorchlightning.ai/ ) .
41
39
- Benchmarking utilities both for model latency & segmentation performance.
40
+ - Regularization techniques to tackle batch effects/domain shifts.
42
41
43
42
## Installation
44
43
@@ -203,6 +202,7 @@ The class API enables the most flexibility in defining different model architect
203
202
- ` model.{decoder_name}_decoder ` - Models can have multiple decoders with unique names.
204
203
- ` model.{head_name}_seg_head ` - Model decoders can have multiple segmentation heads with unique names.
205
204
- ` model.forward(x) ` - forward pass.
205
+ - ` model.forward_features(x) ` - forward pass of the encoder and decoders. Returns enc and dec features
206
206
207
207
** Defining your own multi-task architecture**
208
208
Original file line number Diff line number Diff line change 1
1
from . import inference , models , utils
2
2
from .models import CellPoseUnet , HoverNet , StarDistUnet
3
3
4
- __version__ = "0.1.12 "
4
+ __version__ = "0.1.13 "
5
5
submodules = ["utils" , "models" , "inference" ]
6
6
__all__ = [
7
7
"__version__" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " cellseg_models_pytorch"
3
- version = " 0.1.12 "
3
+ version = " 0.1.13 "
4
4
description = " Python library for 2D cell/nuclei instance segmentation models written with PyTorch."
5
5
authors = [" Okunator <oskari.lehtonen@helsinki.fi>" ]
6
6
license = " MIT"
You can’t perform that action at this time.
0 commit comments