Skip to content

Commit

Permalink
Add .DS_Store to .gitignore and update README.md and model files
Browse files Browse the repository at this point in the history
  • Loading branch information
rhoadesScholar committed Mar 8, 2024
1 parent a0af74f commit d848972
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,7 @@ cython_debug/
#.idea/

# Pytorch
*.pth
*.pth

# Miscellaneous
.DS_Store
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<img src="assets/CellMapLogo2.png" alt="CellMap logo" width="85%">

# cellmap-models

[![tests](https://github.com/janelia-cellmap/cellmap-models/actions/workflows/tests.yaml/badge.svg)](https://github.com/janelia-cellmap/cellmap-models/actions/workflows/tests.yaml)
Expand Down
Binary file added assets/COSEM_logo_semi-invert_transparent.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 assets/CellMapLogo2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 11 additions & 1 deletion src/cellmap_models/pytorch/cellpose/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@ This directory contains finetuned scripts for downloading Cellpose models, parti

## Models

...
### Trained on p7 mouse tissues
- __CP_jrc_mus-thymus-1-nuc-2__: trained on thymus nuclei
- __CP_jrc_mus-skin-1-nuc__:
- __CP_jrc_mus-pancreas-4_nuc__:
- __CP_jrc_mus-heart-1-nuc-2__:
- __CP_jrc_mus-heart-1-ecs__:
- __CP_jrc_mus-epididymis-1-nuc__:
- __CP_jrc_mus-epididymis-2-nuc__:
- __CP_jrc_mus-kidney-3-nuc-2__:
- __CP_jrc_mus-liver-3-nuc-2__:
- __CP_jrc_mus-hippocampus-1-nuc-2__:

## Usage

Expand Down
15 changes: 15 additions & 0 deletions src/cellmap_models/pytorch/cellpose/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
from .add_model import add_model
from .load_model import load_model

models_dict = {
"CP_jrc_mus-thymus-1-nuc-2": "...",
"CP_jrc_mus-skin-1-nuc": "...",
"CP_jrc_mus-pancreas-4_nuc": "...",
"CP_jrc_mus-heart-1-nuc-2": "...",
"CP_jrc_mus-heart-1-ecs": "...",
"CP_jrc_mus-epididymis-1-nuc": "...",
"CP_jrc_mus-epididymis-2-nuc": "...",
"CP_jrc_mus-kidney-3-nuc-2": "...",
"CP_jrc_mus-liver-3-nuc-2": "...",
"CP_jrc_mus-hippocampus-1-nuc-2": "...",
}

models_list = list(models_dict.keys())
2 changes: 2 additions & 0 deletions src/cellmap_models/pytorch/cosem/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<img src="../../../../assets/COSEM_logo_semi-invert_transparent.png" alt="CellMap logo" width="85%">

# COSEM Trained PyTorch Networks

This repository contains the COSEM trained networks, converted to PyTorch. The original COSEM repository can be found [here](https://open.quiltdata.com/b/janelia-cosem-networks/tree/v0003.2/) and the original COSEM paper can be found [here](https://doi.org/10.1038/s41586-021-03977-3).
Expand Down

0 comments on commit d848972

Please sign in to comment.