Skip to content

Commit dc7f52f

Browse files
committed
docs: add logo, fix typo
1 parent 5f8940f commit dc7f52f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# cellseg_models.pytorch
2-
31
<div align="center">
42

3+
![Logo](./images/logo.png)
4+
5+
**Python library for 2D cell/nuclei instance segmentation models written with [PyTorch](https://pytorch.org/).**
6+
57
[![Generic badge](https://img.shields.io/badge/License-MIT-<COLOR>.svg?style=for-the-badge)](https://github.com/okunator/cellseg_models.pytorch/blob/master/LICENSE)
68
[![PyTorch - Version](https://img.shields.io/badge/PYTORCH-1.8+-red?style=for-the-badge&logo=pytorch)](https://pytorch.org/)
79
[![Python - Version](https://img.shields.io/badge/PYTHON-3.7+-red?style=for-the-badge&logo=python&logoColor=white)](https://www.python.org/)
@@ -16,8 +18,6 @@
1618

1719
<div align="center">
1820

19-
**Python library for 2D cell/nuclei instance segmentation models written with [PyTorch](https://pytorch.org/).**
20-
2121
</div>
2222

2323
## Introduction

examples/pannuke_nuclei_segmentation_stardist.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@
275275
"cell_type": "markdown",
276276
"metadata": {},
277277
"source": [
278-
"Typically, encoder-decoder based nuclei segmentation model outputs require post-processing. The main-task of the post-processing is to separate clumped nuclear-objects which is a renowned problem in nuclei segmentation. With `cellseg_models.pytorch`, inference and post-processing can be executed with specific `Inferer` classes that can be found in the `csmp.inference` module. Since the Pannuke-dataset has only 256x256px images, we can use the `ResizeInferer` to run the inference and post-processing (without actually resizing the images). The `Inferers` take in an input directory and a set of arguments, from which, the `instance_postproc` is the most important since it sets the post-procesing method to be used. Here, naturally, we will use `stardist` post-processing since we're running inference for a Stardist model.\n",
278+
"Typically, encoder-decoder based nuclei segmentation model outputs require post-processing. The main-task of the post-processing is to separate clumped nuclear-objects which is a renowned problem in nuclei segmentation. With `cellseg_models.pytorch`, inference and post-processing can be executed with specific `Inferer` classes that can be found in the `csmp.inference` module. Since the Pannuke-dataset has only 256x256px images, we can use the `ResizeInferer` to run the inference and post-processing (without actually resizing the images). The `Inferers` take in an input directory and a set of arguments, from which, the `instance_postproc` is the most important since it sets the post-processing method to be used. Here, naturally, we will use `stardist` post-processing since we're running inference for a Stardist model.\n",
279279
"\n",
280280
"Other important params include: \n",
281281
"- `out_activations` - Sets the output activation functions for each of the model outputs\n",

images/logo.png

35.8 KB
Loading

0 commit comments

Comments
 (0)