Skip to content

Commit 9f0d973

Browse files
committed
chore: bump version, add changelog
1 parent 73ab5e7 commit 9f0d973

File tree

5 files changed

+29
-28
lines changed

5 files changed

+29
-28
lines changed

CHANGELOG.md

+27-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,30 @@
11

2-
<a id='changelog-0.1.12'></a>
3-
# 0.1.12 — 2022-11-25
2+
<a id='changelog-0.1.14'></a>
3+
# 0.1.14 — 2022-12-01
4+
5+
## Performance
6+
7+
- Throw away some unnecessary parts of the cellpose post-proc pipeline that just brought overhead and did nothing.
8+
9+
## Refactor
10+
11+
- Refactor the whole cellpose post-processing pipeline for readability.
12+
13+
- Refactored multiprocessing code to be reusable and moved it under `utils`.
14+
15+
## Features
16+
17+
- Add exact euler integration (on CPU) for cellpose post-processing.
18+
19+
- added more pathos.Pool options for parallel processing. Added `ThreadPool`, `ProcessPool` & `SerialPool`
20+
- add all the mapping methods for each Pool obj. I.e. `amap`, `imap`, `uimap` and `map`
21+
22+
## Tests
23+
24+
- added tests for the multiprocessing tools.
25+
<a id='changelog-0.1.13'></a>
26+
27+
# 0.1.13 — 2022-11-25
428

529
## Features
630

@@ -9,7 +33,7 @@
933
## Fixes
1034

1135
- Turn the `cellpose` and `stardist` postproc dirs into modules.
12-
<a id='changelog-0.1.12'></a>
36+
<a id='changelog-0.1.13'></a>
1337

1438
# 0.1.12 — 2022-11-03
1539

cellseg_models_pytorch/__init__.py

+1-1
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.13"
4+
__version__ = "0.1.14"
55
submodules = ["utils", "models", "inference"]
66
__all__ = [
77
"__version__",

changelog.d/20221201_141058_oskari.lehtonen.md

-11
This file was deleted.

changelog.d/20221201_172540_oskari.lehtonen.md

-12
This file was deleted.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "cellseg_models_pytorch"
3-
version = "0.1.13"
3+
version = "0.1.14"
44
description = "Python library for 2D cell/nuclei instance segmentation models written with PyTorch."
55
authors = ["Okunator <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)