|
7 | 7 | "<img align=\"left\" src = https://project.lsst.org/sites/default/files/Rubin-O-Logo_0.png width=250 style=\"padding: 10px\"> \n", |
8 | 8 | "<br><b> Introduction to AI-based Image Classification with Pytorch</b> <br>\n", |
9 | 9 | "Contact author: Brian Nord <br>\n", |
10 | | - "Last verified to run: 2025-06-20 <br>\n", |
11 | | - "LSST Science Pipelines version: Release r29.1.0 <br>\n", |
| 10 | + "Last verified to run: 2025-10-30 <br>\n", |
| 11 | + "LSST Science Pipelines version: Release r29.2.0 <br>\n", |
12 | 12 | "Container size: medium <br>\n", |
13 | 13 | "Targeted learning level: beginner <br>" |
14 | 14 | ] |
|
1421 | 1421 | "source": [ |
1422 | 1422 | "Plot the distributions of pixel values to understand the data further. All pixel data has been normalized, and pixels have values between 0 and 1 only.\n", |
1423 | 1423 | "\n", |
1424 | | - "The distribution of pixel values matches the images shown above: mostly black (values near 0) pixels, with some white (values near 1), and a few grey (values in between 0 and 1)." |
| 1424 | + "The distribution of pixel values matches the images shown above: mostly black (values near 0) pixels, with some white (values near 1), and a few grey (values in between 0 and 1).\n", |
| 1425 | + "\n", |
| 1426 | + "> **Warning:** the following cell produces a DeprecationWarning that is ok to ignore." |
1425 | 1427 | ] |
1426 | 1428 | }, |
1427 | 1429 | { |
|
2293 | 2295 | "source": [ |
2294 | 2296 | "The Receiver Operator Characteristic (ROC) Curve is a plot of the True Positive Rate (TPR; y axis) versus the False Positive Rate (FPR; x axis).\n", |
2295 | 2297 | "\n", |
2296 | | - "For a given classification threshold on the probability (canonically, 0.5), the balance of true positives and false positives will change." |
| 2298 | + "For a given classification threshold on the probability (canonically, 0.5), the balance of true positives and false positives will change.\n", |
| 2299 | + "\n", |
| 2300 | + "> **Warning:** the cell below produces a pink FutureWarning about deprecated kwargs that is ok to ignore." |
2297 | 2301 | ] |
2298 | 2302 | }, |
2299 | 2303 | { |
|
2327 | 2331 | "id": "vvAqrZwjVYBt" |
2328 | 2332 | }, |
2329 | 2333 | "source": [ |
2330 | | - "### 4.5. Investigating predictions in detail" |
| 2334 | + "### 4.6. Investigating predictions in detail" |
2331 | 2335 | ] |
2332 | 2336 | }, |
2333 | 2337 | { |
2334 | 2338 | "cell_type": "markdown", |
2335 | 2339 | "metadata": {}, |
2336 | 2340 | "source": [ |
2337 | | - "#### 4.5.1. Glossary: classification metrics" |
| 2341 | + "#### 4.6.1. Glossary: classification metrics" |
2338 | 2342 | ] |
2339 | 2343 | }, |
2340 | 2344 | { |
|
2353 | 2357 | "cell_type": "markdown", |
2354 | 2358 | "metadata": {}, |
2355 | 2359 | "source": [ |
2356 | | - "#### 4.5.2. Explore the classification of the training data for an example class value" |
| 2360 | + "#### 4.6.2. Explore the classification of the training data for an example class value" |
2357 | 2361 | ] |
2358 | 2362 | }, |
2359 | 2363 | { |
|
2567 | 2571 | "cell_type": "markdown", |
2568 | 2572 | "metadata": {}, |
2569 | 2573 | "source": [ |
2570 | | - "#### 4.5.3. Investigate morphological features of images with feature maps" |
| 2574 | + "#### 4.6.3. Investigate morphological features of images with feature maps" |
2571 | 2575 | ] |
2572 | 2576 | }, |
2573 | 2577 | { |
|
0 commit comments