Skip to content

Commit

Permalink
chore: bump version add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
okunator committed Aug 28, 2023
1 parent e41b6b4 commit 3d3a29e
Show file tree
Hide file tree
Showing 14 changed files with 43 additions and 41 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,45 @@

<a id='changelog-0.1.22'></a>
# 0.1.22 — 2023-08-28

## Features

- add a stem-skip module. (Long skip for the input image resolution feature map)

- add UnetTR transformer encoder wrapper class
- add a new Encoder wrapper for timm and unetTR based encoders

- Add stem skip support and upsampling block options to all current model architectures

- Add masking option to all the criterions
- Add `MAELoss`
- Add `BCELoss`

- Add base class for transformer based backbones
- Add SAM-VitDet image encoder with support to load pre-trained SAM weights

- Add `CellVIT-SAM` model.

## Docs

- Add notebook example on training Hover-Net with lightning from scratch.

- Add notebook example on training StarDist with lightning from scratch.
- Add notebook example on training CellPose with accelerate from scratch.
- Add notebook example on training OmniPose with accelerate from scratch.

- Add notebook example on finetuning CellVIT-SAM with accelerate.

## Fixes

- Fix current TimmEncoder to store feature info

- Fix Up block to support transconv and bilinear upsampling and fix data flow issues.

- Fix StardistUnet class to output all the decoder features.

- Fix Decoder, DecoderStage and long-skip modules to work with up scale factors instead of output dimensions.

<a id='changelog-0.1.22'></a>
# 0.1.22 — 2023-07-10

Expand Down
2 changes: 1 addition & 1 deletion cellseg_models_pytorch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from . import inference, models, utils
from .models import CellPoseUnet, HoverNet, StarDistUnet

__version__ = "0.1.22"
__version__ = "0.1.23"
submodules = ["utils", "models", "inference"]
__all__ = [
"__version__",
Expand Down
3 changes: 0 additions & 3 deletions changelog.d/20230816_171251_oskari.lehtonen.md

This file was deleted.

8 changes: 0 additions & 8 deletions changelog.d/20230816_171535_oskari.lehtonen.md

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20230816_173051_oskari.lehtonen.md

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/20230817_103920_oskari.lehtonen.md

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/20230817_153801_oskari.lehtonen.md

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/20230821_173459_oskari.lehtonen.md

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20230824_184512_oskari.lehtonen.md

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20230825_141432_oskari.lehtonen.md

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/20230826_114304_oskari.lehtonen.md

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/20230826_114827_oskari.lehtonen.md

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/20230826_115035_oskari.lehtonen.md

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cellseg_models_pytorch"
version = "0.1.22"
version = "0.1.23"
description = "Python library for 2D cell/nuclei instance segmentation models written with PyTorch."
authors = ["Okunator <oskari.lehtonen@helsinki.fi>"]
license = "MIT"
Expand Down

0 comments on commit 3d3a29e

Please sign in to comment.