@@ -48,7 +48,11 @@ Set channels to a list with each of these elements, e.g.
48
48
``channels = [0,0] `` if you want to segment cells in grayscale or for single channel images, or
49
49
``channels = [2,3] `` if you green cells with blue nuclei.
50
50
51
- The `'cyto3' ` model is trained on 9 datasets, see the Cellpose3 paper for more details.
51
+ The `'cyto3' ` model is trained on 9 datasets, see the `Cellpose3 paper <https://www.biorxiv.org/content/10.1101/2024.02.10.579780v2 >`_
52
+ for more details.
53
+
54
+ These models are downloadable from the website with MODEL_NAME: ``cytotorch_0 ``, ``cyto2torch_0 ``, and ``cyto3 ``.
55
+ The size models are ``size_cytotorch_0.npy ``, ``size_cyto2torch_0.npy ``, and ``size_cyto3.npy ``.
52
56
53
57
Nucleus model (`'nuclei' `)
54
58
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -60,6 +64,9 @@ always set to an array of zeros. Therefore set the first channel as
60
64
``channels = [0,0] `` if you want to segment nuclei in grayscale or for single channel images, or
61
65
``channels = [3,0] `` if you want to segment blue nuclei.
62
66
67
+ The `'nuclei' ` model is downloadable from the website with MODEL_NAME ``nucleitorch_0 ``,
68
+ and size model ``size_nucleitorch_0.npy ``.
69
+
63
70
Other built-in models
64
71
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
65
72
@@ -72,7 +79,7 @@ These models can be loaded and used in the notebook with e.g.
72
79
``models.CellposeModel(model_type='tissuenet_cp3') `` or ``models.CellposeModel(model_type='livecell_cp3') ``,
73
80
or in the command line with ``python -m cellpose --pretrained_model tissuenet_cp3 ``.
74
81
75
- The dataset-specific models were trained on the training images provided in the following datasets:
82
+ The dataset-specific models were trained on the training images from the following datasets:
76
83
- ``tissuenet_cp3 ``: `tissuenet dataset <https://datasets.deepcell.org/ >`_.
77
84
- ``livecell_cp3 ``: `livecell dataset <https://sartorius-research.github.io/LIVECell/ >`_
78
85
- ``yeast_PhC_cp3 ``: `YEAZ dataset <https://www.epfl.ch/labs/lpbs/data-and-software/ >`_
@@ -82,6 +89,15 @@ The dataset-specific models were trained on the training images provided in the
82
89
- ``deepbacs_cp3 ``: `deepbacs dataset <https://github.com/HenriquesLab/DeepBacs/wiki/Segmentation >`_
83
90
- ``cyto2_cp3 ``: `cellpose dataset <http://www.cellpose.org/dataset >`_
84
91
92
+ There are also legacy models which remain on the website with MODEL_NAME:
93
+ - Cellpose2 style-specific models: ``CP ``, ``CPx ``, ``TN1 ``, ``TN2 ``, ``TN3 ``, ``LC1 ``, ``LC2 ``, ``LC3 ``, ``LC4 ``, ``style_choice.npy ``.
94
+ - Cellpose2 general models: ``tissuenet ``, ``livecell ``, ``general ``.
95
+ - Cellpose1 mxnet models: ``cyto_0 ``, ``nuclei_0 ``, ``size_cyto_0.npy ``, ``size_nuclei_0.npy ``.
96
+
97
+ We see no improvement with transformer models in the Cellpose3 paper and the
98
+ `Neurips challenge response <https://www.biorxiv.org/content/10.1101/2024.04.06.587952v1 >`_,
99
+ but the models are available as ``transformer_cp3 `` and ``neurips_cellpose_transformer ``. These model take three channels as input.
100
+ The u-net based Neurips challenge model is available as ``neurips_cellpose_default `` and also takes three channels as input.
85
101
86
102
User-trained models
87
103
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
0 commit comments