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

cellfinder v1.3.0 blog post #197

Merged
merged 5 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
Binary file added docs/source/_static/comparison_tensorflow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_static/comparison_torch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions docs/source/blog/cellfinder-v1_3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
blogpost: true
date: June 3, 2024
author: Igor Tatarnikov
location: London, England
category: brainglobe
language: English
---

# Cellfinder version 1.3.0 is released!

We are excited to announce that a new version of `cellfinder` has been released.

## Main updates
* This update brings a significant change to the backend of `cellfinder`, as we have switched from TensorFlow to PyTorch. This change allows `cellfinder` to support python versions 3.11+, and simplifies the installation process. The new `cellfinder` version maintains the same classification accuracy. Models trained using previous versions of `cellfinder` will continue to work with the new version.


* The default batch size used for detection has been increased to 64, which improves classification speed by approximately 40% on most systems. The batch size used for detection can be adjusted in the `napari` plugin.
IgorTatarnikov marked this conversation as resolved.
Show resolved Hide resolved

## What do I need to do?

Since this is a major update, we recommend using a fresh conda environment.
IgorTatarnikov marked this conversation as resolved.
Show resolved Hide resolved
For GPU support, please follow the installation instructions in the [documentation](../documentation/setting-up/gpu.md).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Once everything is merged, this will point to new, pytorch-based instructions right?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I understand Sphinx correctly then yes, this should point to the instructions as updated in #189!


```bash
conda create -n cellfinder -c conda-forge python=3.10
IgorTatarnikov marked this conversation as resolved.
Show resolved Hide resolved
conda activate cellfinder
pip install cellfinder
```

You can also update an existing installation of `cellfinder` using pip:

```bash
pip install --upgrade cellfinder
```


## Classification performance
The classification performance between the two versions is comparable. Below is a comparison of the performance between the two versions using data from the [`cellfinder` paper](https://doi.org/10.1371/journal.pcbi.1009074). Running `cellfinder` with a PyTorch backend results in a comparable Pearson correlation and slightly improved linear best-fit slope (labelled as "coeff" in the plot) when comparing to manual cell counts. For more details on how the graphs were generated, see the [`cellfinder` paper](https://doi.org/10.1371/journal.pcbi.1009074).
IgorTatarnikov marked this conversation as resolved.
Show resolved Hide resolved

### TensorFlow backend
![TensorFlow Performance](../_static/comparison_tensorflow.png)

### PyTorch backend
![PyTorch Performance](../_static/comparison_torch.png)
adamltyson marked this conversation as resolved.
Show resolved Hide resolved