Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump 0.2.2 #107

Merged
merged 3 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,12 @@ F1-score is computed from the Intersection over Union (IoU) with ground truth la

## News

**New version: v0.2.1**
**New version: v0.2.2**

- v0.2.2:
- Updated the Colab Notebooks for training and inference
- New models available in the inference demo notebook
- CRF optional post-processing adjustments (and pip install directly)
- v0.2.1:
- Updated plugin default behaviors across the board to be more readily applicable to demo data
- Threshold value in inference is now automatically set by default according to performance on demo data on a per-model basis
Expand Down
2 changes: 1 addition & 1 deletion napari_cellseg3d/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""napari-cellseg3d - napari plugin for cell segmentation."""

__version__ = "0.2.1"
__version__ = "0.2.2"
2 changes: 1 addition & 1 deletion napari_cellseg3d/code_plugins/plugin_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def __init__(self, viewer: "napari.viewer.Viewer"):
self.logo_label.setToolTip("Open Github page")

self.info_label = ui.make_label(
f"You are using napari-cellseg3d v.{'0.2.1'}\n\n"
f"You are using napari-cellseg3d v.{'0.2.2'}\n\n"
f"Plugin for cell segmentation developed\n"
f"by the Mathis Lab of Adaptive Motor Control\n\n"
f"Code by :\nCyril Achard\nMaxime Vidal\nJessy Lauer\nMackenzie Mathis\n"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = napari_cellseg3d
version = 0.2.1
version = 0.2.2

[options]
packages = find:
Expand Down
Loading