From 4c892f41af9b858412d3ab1dccda155ec482420f Mon Sep 17 00:00:00 2001 From: Okunator Date: Fri, 13 Oct 2023 15:02:50 +0300 Subject: [PATCH] chore: bump version, add changelog --- CHANGELOG.md | 17 ++++++++++------- cellseg_models_pytorch/__init__.py | 2 +- changelog.d/20230922_082631_oskari.lehtonen.md | 2 -- changelog.d/20231010_143903_oskari.lehtonen.md | 5 ----- pyproject.toml | 2 +- 5 files changed, 12 insertions(+), 16 deletions(-) delete mode 100644 changelog.d/20230922_082631_oskari.lehtonen.md delete mode 100644 changelog.d/20231010_143903_oskari.lehtonen.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 496a4d9..6143610 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,24 +1,27 @@ -# 0.1.23 — 2023-09-21 +# 0.1.24 — 2023-10-13 -## Docs +## Style -- Add `CPP-Net` example trainng with Pannuke dataset. +- Update the `Ìnferer.infer()` -method api to accept arguments related to saving the model outputs. ## Features - Add `CPP-Net`. https://arxiv.org/abs/2102.06867 - -# 0.1.23 — 2023-09-19 - -## Features +- Add option for mixed precision inference - Add option to interpolate model outputs to a given size to all of the segmentation models. - Add DINOv2 Backbone +- Add support for `.geojson`, `.feather`, `.parquet` file formats when running inference. + +## Docs + +- Add `CPP-Net` example trainng with Pannuke dataset. + ## Fixes - Fix resize transformation bug. diff --git a/cellseg_models_pytorch/__init__.py b/cellseg_models_pytorch/__init__.py index 31d9c5a..4cfa7af 100644 --- a/cellseg_models_pytorch/__init__.py +++ b/cellseg_models_pytorch/__init__.py @@ -1,7 +1,7 @@ from . import inference, models, utils from .models import CellPoseUnet, HoverNet, StarDistUnet -__version__ = "0.1.23" +__version__ = "0.1.24" submodules = ["utils", "models", "inference"] __all__ = [ "__version__", diff --git a/changelog.d/20230922_082631_oskari.lehtonen.md b/changelog.d/20230922_082631_oskari.lehtonen.md deleted file mode 100644 index 5c92ccf..0000000 --- a/changelog.d/20230922_082631_oskari.lehtonen.md +++ /dev/null @@ -1,2 +0,0 @@ -## Features -- Add option for mixed precision inference diff --git a/changelog.d/20231010_143903_oskari.lehtonen.md b/changelog.d/20231010_143903_oskari.lehtonen.md deleted file mode 100644 index 9c37b19..0000000 --- a/changelog.d/20231010_143903_oskari.lehtonen.md +++ /dev/null @@ -1,5 +0,0 @@ -## Features -- Add support for `.geojson`, `.feather`, `.parquet` file formats when running inference. - -## Style -- Update the `Ìnferer.infer()` -method api to accept arguments related to saving the model outputs. diff --git a/pyproject.toml b/pyproject.toml index 817dcea..5c4f01a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cellseg_models_pytorch" -version = "0.1.23" +version = "0.1.24" description = "Python library for 2D cell/nuclei instance segmentation models written with PyTorch." authors = ["Okunator "] license = "MIT"