Skip to content

Commit

Permalink
Merge pull request #84 from BiAPoL/add-yolo-on-omero-tutorial
Browse files Browse the repository at this point in the history
Add Yolo/OMERO tutorial
  • Loading branch information
jo-mueller authored Aug 20, 2024
2 parents c7e76f7 + 76d0ed2 commit 1fb57d9
Show file tree
Hide file tree
Showing 24 changed files with 763 additions and 2 deletions.
2 changes: 2 additions & 0 deletions docs/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ parts:
- caption: Blog Posts
chapters:
# Add new chapters here (recent first)
- file: johannes_mueller/yolo_from_omero/train_yolo
- file: mara_lampert/getting_started_with_miniforge_and_python/readme
- file: stefan_hahmann/elephant_server_installation_windows/readme
- file: stefan_hahmann/github_desktop_jupyter_notebook/readme
- file: johannes_mueller/qtdesigner_and_magicgui/Readme
Expand Down
Binary file added docs/images/yolo_dataset.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ If you have feedback or suggestions, if spotted a typo, broken link or misleadin

## Recent blog posts

### [Getting started with Miniforge and Python](mara_lampert/getting_started_with_miniforge_and_python/readme)
### [Training a yolo model on an OMERO dataset](ref:yolo_omero)

<small>[Johannes Soltwedel](johannes_mueller/readme), August 12th, 2024</small><br>
<img src="images/yolo_dataset.PNG" width=10% align="right"><p>YOLO is a powerful tool for object detection and thus, obviously interesting in bio-image analysis. This blog post will show you how to train a YOLO model on an OMERO dataset.</p>

### [Getting started with Miniforge and Python](mara_lampert/getting_started_with_miniforge_and_python/readme)]

<small>[Mara Lampert](mara_lampert/readme), July 8th, 2024</small><br>
<img src="images/package_manager.jpeg" width="100" align="right"><p>This post will help you to get started with Python using Miniforge. More precisely, you will learn how to install Miniforge, how to create and use conda environments and you will get to know some important packages for bio image analysis.</p>
Expand Down
3 changes: 2 additions & 1 deletion docs/johannes_mueller/Readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Johannes Müller
# Johannes Soltwedel

<img src="../images/johannes_mueller.jpg" alt="pol" width="150"/>

Expand All @@ -17,6 +17,7 @@ educate others to empower them to develop their own workflows and develop new me
* [Advanced GUIs with Qt designer](entry_user_interf2/Readme)
* [Automated package documentation with Sphinx](entry_sphinx/Readme)
* [Getting started with Python and Anaconda](anaconda_getting_started/Readme)
* [Training a yolo model on an OMERO dataset](ref:yolo_omero)

## Links
* [BiA-PoL group website](https://physics-of-life.tu-dresden.de/en/research/technology-development-groups/bio-image-analysis)
Expand Down
10 changes: 10 additions & 0 deletions docs/johannes_mueller/yolo_from_omero/detection.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
path: E:/BiAPoL/yolo_demo/dataset # dataset root dir
train: train/images # train images (relative to 'path') 128 images
val: val/images # val images (relative to 'path') 128 images
test: test/images # test images (optional)

names:
0: cell
1: compacted
2: spheroid
3: dead
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
741 changes: 741 additions & 0 deletions docs/johannes_mueller/yolo_from_omero/train_yolo.ipynb

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
(ref:miniforge_python)=

# Getting started with Miniforge and Python
[Mara Lampert](../readme), July 8th, 2024

Expand Down

0 comments on commit 1fb57d9

Please sign in to comment.