From c2196c134a0f5cfe29e36cc5cfc52b792d7db237 Mon Sep 17 00:00:00 2001 From: Anshul Joshi Date: Sun, 1 Mar 2020 22:19:37 +0530 Subject: [PATCH 1/3] spelling - The to They --- 01_intro.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/01_intro.ipynb b/01_intro.ipynb index c15fa93..4fd9e48 100644 --- a/01_intro.ipynb +++ b/01_intro.ipynb @@ -140,7 +140,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "The realised that a simplified model of a real neuron could be represented using simple addition and thresholdingas shown in <>. Pitts was self-taught, and, by age 12, had received an offer to study at Cambridge with the great Bertrand Russell. He did not take up this invitation, and indeed throughout his life did not accept any offers of advanced degrees or positions of authority. Most of his famous work was done whilst he was homeless. Despite his lack of an officially recognized position, and increasing social isolation, his work with McCulloch was influential, and was picked up by a psychologist named Frank Rosenblatt." + "They realised that a simplified model of a real neuron could be represented using simple addition and thresholdingas shown in <>. Pitts was self-taught, and, by age 12, had received an offer to study at Cambridge with the great Bertrand Russell. He did not take up this invitation, and indeed throughout his life did not accept any offers of advanced degrees or positions of authority. Most of his famous work was done whilst he was homeless. Despite his lack of an officially recognized position, and increasing social isolation, his work with McCulloch was influential, and was picked up by a psychologist named Frank Rosenblatt." ] }, { @@ -2876,7 +2876,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.5" + "version": "3.7.4" }, "toc": { "base_numbering": 1, From 103acbd52b6a1f70faf60aabb0abe4dfa912ae2c Mon Sep 17 00:00:00 2001 From: MrFabulous Date: Sun, 1 Mar 2020 17:24:22 +0000 Subject: [PATCH 2/3] Fix spelling in 21_learner.ipynb --- 21_learner.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/21_learner.ipynb b/21_learner.ipynb index f352f07..5c384a4 100644 --- a/21_learner.ipynb +++ b/21_learner.ipynb @@ -23,7 +23,7 @@ "source": [ "This final chapter (other than the conclusion, and the online chapters) is going to look a bit different. We will have far more code, and far less pros than previous chapters. We will introduce new Python keywords and libraries without discussing them. This chapter is meant to be the start of a significant research project for you. You see, we are going to implement all of the key pieces of the fastai and PyTorch APIs from scratch, building on nothing other than the components that we developed in <>! The key goal here is to end up with our own `Learner` class, and some callbacks--enough to be able to train a model on Imagenette, including examples of each of the key techniques we've studied. On the way to building Learner, we will be creating Module, Parameter, and even our own parallel DataLoader… and much more.\n", "\n", - "The end of chapter questionnaire is particularly important for this chapter. This is where we will be getting you started on the many interesting directions that you could take, using this chapter as your starting out point. What we really saying is: follow through with this chapter on your computer, not on paper, and do lots of experiments, web searches, and whatever else you need to understand what's going on. You've built up the skills and expertise to do this in the rest of this book, so we think you are going to go great!" + "The end of chapter questionnaire is particularly important for this chapter. This is where we will be getting you started on the many interesting directions that you could take, using this chapter as your starting out point. What we are really saying is: follow through with this chapter on your computer, not on paper, and do lots of experiments, web searches, and whatever else you need to understand what's going on. You've built up the skills and expertise to do this in the rest of this book, so we think you are going to go great!" ] }, { @@ -1742,7 +1742,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.5" + "version": "3.7.4" }, "toc": { "base_numbering": 1, From 45c03b53beb4c9fbd385e29febb494321af6d343 Mon Sep 17 00:00:00 2001 From: unknown <777JonathanSum@gmail.com> Date: Sun, 1 Mar 2020 11:13:52 -0800 Subject: [PATCH 3/3] Signed-off-by: unknown <777JonathanSum@gmail.com> --- 02_production.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02_production.ipynb b/02_production.ipynb index 0237d68..7a717a5 100644 --- a/02_production.ipynb +++ b/02_production.ipynb @@ -646,7 +646,7 @@ "item_tfms=Resize(128)\n", "```\n", "\n", - "Our images are all different sizes, and this is a problem for deep learning: we don't feed the model one image at a time but several (what we call a *mini-batch*) of them. To group them in a big array (usually called *tensor*) that is going to go through our model, they all need to be of the same size. So we need to add a transform twhich will resize these images to the same size. *item transforms* are pieces of code which run on each individual item, whether it be an image, category, or so forth. fastai includes many predefined transforms; we will use the `Resize` transform here.\n", + "Our images are all different sizes, and this is a problem for deep learning: we don't feed the model one image at a time but several (what we call a *mini-batch*) of them. To group them in a big array (usually called *tensor*) that is going to go through our model, they all need to be of the same size. So we need to add a transform which will resize these images to the same size. *item transforms* are pieces of code which run on each individual item, whether it be an image, category, or so forth. fastai includes many predefined transforms; we will use the `Resize` transform here.\n", "\n", "This command has given us a `DataBlock` object. This is like a *template* for creating a `DataLoaders`. We still need to tell fastai the actual source of our data — in this case, the path where the images can be found." ]