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.
112<a id =' changelog-0.1.12 ' ></a >
213
314# 0.1.12 — 2022-11-03
Original file line number Diff line number Diff line change 99[ ![ Python - Version] ( https://img.shields.io/badge/PYTHON-3.7+-red?style=for-the-badge&logo=python&logoColor=white )] ( https://www.python.org/ )
1010<br >
1111[ ![ 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 >
1512[ ![ 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 )
1614<br >
1715[ ![ DOI] ( https://zenodo.org/badge/450787123.svg )] ( https://zenodo.org/badge/latestdoi/450787123 )
1816
3937- Popular training losses and benchmarking metrics.
4038- Simple model training with [ pytorch-lightning] ( https://www.pytorchlightning.ai/ ) .
4139- Benchmarking utilities both for model latency & segmentation performance.
40+ - Regularization techniques to tackle batch effects/domain shifts.
4241
4342## Installation
4443
@@ -203,6 +202,7 @@ The class API enables the most flexibility in defining different model architect
203202- ` model.{decoder_name}_decoder ` - Models can have multiple decoders with unique names.
204203- ` model.{head_name}_seg_head ` - Model decoders can have multiple segmentation heads with unique names.
205204- ` model.forward(x) ` - forward pass.
205+ - ` model.forward_features(x) ` - forward pass of the encoder and decoders. Returns enc and dec features
206206
207207** Defining your own multi-task architecture**
208208
Original file line number Diff line number Diff line change 11from . import inference , models , utils
22from .models import CellPoseUnet , HoverNet , StarDistUnet
33
4- __version__ = "0.1.12 "
4+ __version__ = "0.1.13 "
55submodules = ["utils" , "models" , "inference" ]
66__all__ = [
77 "__version__" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " cellseg_models_pytorch"
3- version = " 0.1.12 "
3+ version = " 0.1.13 "
44description = " Python library for 2D cell/nuclei instance segmentation models written with PyTorch."
55authors = [
" Okunator <[email protected] >" ]
66license = " MIT"
You can’t perform that action at this time.
0 commit comments