Skip to content

Commit 26e568f

Browse files
committed
chore: bump version, changelog, README adds
1 parent c49c315 commit 26e568f

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@
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

@@ -39,6 +37,7 @@
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

cellseg_models_pytorch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from . import inference, models, utils
22
from .models import CellPoseUnet, HoverNet, StarDistUnet
33

4-
__version__ = "0.1.12"
4+
__version__ = "0.1.13"
55
submodules = ["utils", "models", "inference"]
66
__all__ = [
77
"__version__",

changelog.d/20221125_124720_oskari.lehtonen.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "cellseg_models_pytorch"
3-
version = "0.1.12"
3+
version = "0.1.13"
44
description = "Python library for 2D cell/nuclei instance segmentation models written with PyTorch."
55
authors = ["Okunator <oskari.lehtonen@helsinki.fi>"]
66
license = "MIT"

0 commit comments

Comments
 (0)