-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
156 lines (148 loc) · 7.08 KB
/
resources.html
File metadata and controls
156 lines (148 loc) · 7.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Resources | So You Want To Do Image Analysis With Python</title>
<meta
name="description"
content="Central course resources for notebooks, setup materials, and quick links."
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Source+Serif+4:opsz,wght@8..60,400;600&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/github-dark.min.css"
/>
<link rel="stylesheet" href="assets/css/site.css" />
</head>
<body>
<a class="skip-link" href="#main-content">Skip to content</a>
<header class="site-header">
<div class="wrap">
<div class="header-shell">
<a class="brand" href="index.html">SYWTDIAWP</a>
<nav class="site-nav" aria-label="Primary">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="index.html#modules">Modules</a>
<a class="nav-link" href="resources.html">Resources</a>
<a class="nav-cta" href="tutorials/install-python.html">Start here</a>
</nav>
</div>
</div>
</header>
<main class="page-main" id="main-content">
<div class="wrap page-layout">
<div class="lesson-content">
<section class="page-hero">
<p class="page-kicker">Resources</p>
<h1>The “where did that file go?” page</h1>
<p class="lead">
This page gathers the useful bits in one place so you do not have
to play hide-and-seek with notebooks, setup links, or the next step.
</p>
</section>
<section class="panel">
<h2>Sample notebooks</h2>
<ul class="resource-list">
<li>
<a href="notebooks/cell_measurements_intro.ipynb">Cell measurements intro</a>
for grouped summaries and plotting.
</li>
<li>
<a href="notebooks/image_qc_exercises.ipynb">Image QC exercises</a>
for simple image-like arrays and practice tasks.
</li>
</ul>
</section>
<section class="panel">
<h2>Recommended course path</h2>
<ol class="step-list">
<li>Install Python locally.</li>
<li>Create one environment with <code>venv</code> or conda.</li>
<li>Learn enough Python basics to read and edit beginner code.</li>
<li>Meet the main scientific Python libraries you will keep seeing.</li>
<li>Move into Jupyter notebooks and examples.</li>
<li>Use pandas and matplotlib for tables and plotting.</li>
<li>Install napari and try the <code>napari-mAIcrobe</code> plugin.</li>
<li>Create a small package once your workflow becomes reusable.</li>
<li>Continue into segmentation, classification, QC, neural networks, and pretrained models.</li>
</ol>
</section>
<section class="panel">
<h2>Recommended pacing</h2>
<ol class="step-list">
<li>Day 1: install Python and get comfortable with the terminal.</li>
<li>Day 2: create and activate environments a few times.</li>
<li>Day 3: work slowly through Python basics and type the examples.</li>
<li>Day 4: meet NumPy, pandas, matplotlib, and the rest of the scientific stack.</li>
<li>Day 5: open Jupyter and complete the first notebook exercises.</li>
<li>Day 6: work through pandas and matplotlib with real tables and plots.</li>
<li>Day 7: install napari and explore one viewer-based workflow.</li>
<li>Day 8: scaffold a package and add one simple function.</li>
<li>Day 9 and beyond: move into segmentation, QC, classifiers, and pretrained models.</li>
</ol>
</section>
<section class="panel">
<h2>Useful repo pages</h2>
<ul class="resource-list">
<li><a href="tutorials/install-python.html">Install Python</a></li>
<li><a href="tutorials/virtual-environments.html">Virtual environments</a></li>
<li><a href="tutorials/python-basics.html">Python basics</a></li>
<li><a href="tutorials/scientific-python-libraries.html">Scientific Python libraries</a></li>
<li><a href="tutorials/jupyter-notebooks.html">Jupyter notebooks</a></li>
<li><a href="tutorials/pandas-and-matplotlib.html">pandas and matplotlib</a></li>
<li><a href="tutorials/napari-maicrobe.html">napari + mAIcrobe</a></li>
<li><a href="tutorials/create-python-package.html">Create a package</a></li>
<li><a href="tutorials/advanced-ml-segmentation.html">ML segmentation</a></li>
<li><a href="tutorials/advanced-single-cell-classification.html">Single-cell classification</a></li>
<li><a href="tutorials/advanced-segmentation-qc.html">Segmentation QC</a></li>
<li><a href="tutorials/advanced-neural-networks.html">Neural networks</a></li>
<li><a href="tutorials/advanced-deep-learning-tools.html">Pretrained models and accessible DL</a></li>
<li><a href="glossary.html">Glossary</a></li>
<li><a href="troubleshooting.html">Troubleshooting</a></li>
</ul>
</section>
</div>
<aside class="page-sidebar">
<section class="callout">
<h3>Why this page exists</h3>
<p>
Every course eventually needs one dependable page for links,
notebooks, and “where was I again?” moments. This is that page.
</p>
</section>
<section class="panel">
<h2>Quick start</h2>
<div class="quick-links">
<a href="tutorials/install-python.html">
<strong>Begin with setup</strong><br />
Start with local Python installation.
</a>
<a href="tutorials/jupyter-notebooks.html">
<strong>Jump to notebooks</strong><br />
Open examples and exercises.
</a>
</div>
</section>
</aside>
</div>
</main>
<footer class="site-footer">
<div class="wrap">
<p>SYWTDIAWP resources</p>
<div class="footer-links">
<a href="index.html">Home</a>
<a href="tutorials/install-python.html">Start here</a>
<a href="index.html#modules">Course map</a>
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
</body>
</html>