Skip to content

Commit c3ea9fb

Browse files
committed
added machine learning lecture materials
1 parent 7c3d93d commit c3ea9fb

10 files changed

+1707
-0
lines changed

08_machine_learning/01_supervised_machine_learning.ipynb

Lines changed: 728 additions & 0 deletions
Large diffs are not rendered by default.

08_machine_learning/02_scikit_learn_random_forest_pixel_classifier.ipynb

Lines changed: 604 additions & 0 deletions
Large diffs are not rendered by default.

08_machine_learning/03_apoc_object_segmenter.ipynb

Lines changed: 360 additions & 0 deletions
Large diffs are not rendered by default.
3.3 MB
Binary file not shown.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
def generate_biomodal_2d_data():
2+
import numpy as np
3+
4+
rs = np.random.RandomState(seed=0)
5+
6+
x1 = rs.normal(3, 1, (150,2))
7+
x2 = rs.normal(8, 1.5, (150,2))
8+
9+
x_all = np.concatenate((x1, x2), axis=0)
10+
rs.shuffle(x_all)
11+
return x_all

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ If you have any questions, please use the anonymous etherpad (see email) or open
9191
* [Bland-Altman analysis](07_descriptive_statistics/04_Bland_altman_analysis.ipynb)
9292
* [Preparation for next session: Install devbio-napari](https://www.napari-hub.org/plugins/devbio-napari#installation)
9393
* Machine learning for bio-image analysis (2022-May-31)
94+
* [Machine Learning for Pixel and Object Classification (slides)](08_machine_learning/Machine_Learning_for_BioImage_Analysis.pdf)
95+
* [Scikit-learn for object classification](08_machine_learning/01_supervised_machine_learning.ipynb)
96+
* [Scikit-learn based Pixel classification](08_machine_learning/02_scikit_learn_random_forest_pixel_classifier.ipynb)
97+
* [Accelerate Pixel and Object Classification](08_machine_learning/03_apoc_object_segmenter.ipynb)
9498
* break
9599
* Hypothesis testing (2022-Jun-14)
96100
* Multiple comparisons and correlations (2022-Jun-21)

data/BBBC038/0bf4b1_binary.tif

-64.1 KB
Binary file not shown.
-145 KB
Binary file not shown.

data/blobs_annotations.tif

254 KB
Binary file not shown.

data/blobs_label_annotation.tif

1.46 KB
Binary file not shown.

0 commit comments

Comments
 (0)