Skip to content

Commit 00e7dcd

Browse files
committed
Chapter 8 Done | Part 1 Finished
Excuse to build a huge rig at home completed, lets go stable diffusion!
1 parent 771d5a9 commit 00e7dcd

File tree

7 files changed

+1209
-292
lines changed

7 files changed

+1209
-292
lines changed

_quarto.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ website:
99
- icon: github
1010
href: https://github.com/nglillywhite
1111
- icon: linkedin
12-
href: https://www.linkedin.com/in/nicholas-lillywhite-67b67993/
12+
href: https://www.linkedin.com/in/nicholas-lillywhite/
1313
format:
1414
html:
1515
theme: Zephyr

about.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: "About"
3-
image: profile.jpeg
3+
image: profile.jpg
44
about:
55
template: jolla
66
links:
77
- icon: linkedin
88
text: LinkedIn
9-
href: https://www.linkedin.com/in/nicholas-lillywhite-67b67993/
9+
href: https://www.linkedin.com/in/nicholas-lillywhite/
1010
- icon: github
1111
text: Github
1212
href: https://github.com/nglillywhite
@@ -15,7 +15,7 @@ about:
1515

1616
Hey I'm Nick,
1717

18-
I'm a budding Data Practitioner and ML Engineer, thanks for visiting my blog. I'd love to get feedback on any of my writing or if you'd like to get in touch with me, please email nglillywhite@gmail or message my **[LinkedIn](https://www.linkedin.com/in/nicholas-lillywhite-67b67993/)**.
18+
I'm a budding Data Practitioner and ML Engineer, thanks for visiting my blog. I'd love to get feedback on any of my writing or if you'd like to get in touch with me, please email nglillywhite@gmail or message my **[LinkedIn](https://www.linkedin.com/in/nicholas-lillywhite/)**.
1919

2020
If you have any requests or ideas you'd like to hear my thoughts on, please let me know! I did write a single blog post on medium at [my profile](https://medium.com/@nglillywhite) a while ago but I don't think I'll use the platform going forward as its not as flexible as notebooks, nbdev, quarto.
2121

posts/2023-03-08 Fastai Lesson 8.ipynb

Lines changed: 1093 additions & 288 deletions
Large diffs are not rendered by default.
Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "raw",
5+
"id": "70d00952-718e-4c60-9c87-d246f3c08d61",
6+
"metadata": {},
7+
"source": [
8+
"---\n",
9+
"badges: true\n",
10+
"categories:\n",
11+
"- jupyter\n",
12+
"- fastai\n",
13+
"- ML\n",
14+
"date: '2023-04-17'\n",
15+
"description: Bounding Boxes, Anchors, IoU\n",
16+
"title: Object Detection with Fastai\n",
17+
"author: Nicholas Lillywhite\n",
18+
"toc: true\n",
19+
"draft: true\n",
20+
"image: \"images/embed.png\"\n",
21+
"---"
22+
]
23+
},
24+
{
25+
"cell_type": "markdown",
26+
"id": "79685425-9d86-4fe6-9a1d-324997e7daa3",
27+
"metadata": {},
28+
"source": [
29+
"# Object Detection with Fastai\n",
30+
"> Bounding Boxes, Anchors, IoU\n",
31+
"\n",
32+
"> Checkout this notebook in [colab](https://colab.research.google.com/github/nglillywhite/blog/blob/main/posts/2023-04-17%20Object%20Detection%20with%20Fastai.ipynb)"
33+
]
34+
},
35+
{
36+
"cell_type": "code",
37+
"execution_count": null,
38+
"id": "a4005b5b-90a5-46fb-86f0-2b45b5881a0b",
39+
"metadata": {},
40+
"outputs": [],
41+
"source": [
42+
"x = \"hello\""
43+
]
44+
},
45+
{
46+
"cell_type": "code",
47+
"execution_count": null,
48+
"id": "7691264f-f10a-40f1-9106-62dd9fcbb681",
49+
"metadata": {},
50+
"outputs": [
51+
{
52+
"name": "stdout",
53+
"output_type": "stream",
54+
"text": [
55+
"hello\n"
56+
]
57+
}
58+
],
59+
"source": [
60+
"!echo {x}"
61+
]
62+
},
63+
{
64+
"cell_type": "code",
65+
"execution_count": null,
66+
"id": "cb65b9e6-0551-4d06-b582-d5f12bcfd46e",
67+
"metadata": {},
68+
"outputs": [],
69+
"source": [
70+
"import csv"
71+
]
72+
},
73+
{
74+
"cell_type": "code",
75+
"execution_count": null,
76+
"id": "fecba96c-121e-40c7-8676-61a32a823543",
77+
"metadata": {},
78+
"outputs": [
79+
{
80+
"data": {
81+
"text/plain": [
82+
"1"
83+
]
84+
},
85+
"execution_count": null,
86+
"metadata": {},
87+
"output_type": "execute_result"
88+
}
89+
],
90+
"source": [
91+
"csv.QUOTE_ALL"
92+
]
93+
},
94+
{
95+
"cell_type": "code",
96+
"execution_count": null,
97+
"id": "84908be4-37c7-437c-bdbf-b6f7dfcc9eeb",
98+
"metadata": {},
99+
"outputs": [],
100+
"source": []
101+
}
102+
],
103+
"metadata": {
104+
"kernelspec": {
105+
"display_name": "python3",
106+
"language": "python",
107+
"name": "python3"
108+
}
109+
},
110+
"nbformat": 4,
111+
"nbformat_minor": 5
112+
}

posts/images/profile.jpg

306 KB
Loading

profile.jpeg

-118 KB
Binary file not shown.

profile.jpg

306 KB
Loading

0 commit comments

Comments
 (0)