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

Update Documentation #220

Merged
merged 1 commit into from
Oct 3, 2023
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
4 changes: 2 additions & 2 deletions doc/finetuned_models.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ See for example the [2d annotator example](https://github.com/computational-cell

As a rule of thumb:
- Use the `_lm` models for segmenting cells or nuclei in light microscopy.
- Use the `_em` models for segmenting ceells or neurites in electron microscopy.
- Note that this model does not work well for segmenting mitochondria or other organelles becuase it is biased towards segmenting the full cell / cellular compartment.
- Use the `_em` models for segmenting cells or neurites in electron microscopy.
- Note that this model does not work well for segmenting mitochondria or other organelles because it is biased towards segmenting the full cell / cellular compartment.
- For other cases use the default models.

See also the figures above for examples where the finetuned models work better than the vanilla models.
Expand Down
4 changes: 2 additions & 2 deletions doc/python_library.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import micro_sam
```

The library
- implements function to apply Segment Anything to 2d and 3d data more conviently in `micro_sam.prompt_based_segmentation`.
- provides more and imporoved automatic instance segmentation functionality in `micro_sam.instance_segmentation`.
- implements function to apply Segment Anything to 2d and 3d data more conveniently in `micro_sam.prompt_based_segmentation`.
- provides more and improved automatic instance segmentation functionality in `micro_sam.instance_segmentation`.
- implements training functionality that can be used for finetuning on your own data in `micro_sam.training`.
- provides functionality for quantitative and qualitative evaluation of Segment Anything models in `micro_sam.evaluation`.

Expand Down