Skip to content

Commit

Permalink
all typos done
Browse files Browse the repository at this point in the history
  • Loading branch information
pritesh2000 committed Sep 1, 2024
1 parent 3c56af4 commit 4f7e678
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions 07_pytorch_experiment_tracking.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1361,7 +1361,7 @@
"\n",
"With practice and running many different experiments, you'll start to build an intuition of what *might* help your model.\n",
"\n",
"I say *might* on purpose because there's no guarantees.\n",
"I say *might* on purpose because there's no guarantee.\n",
"\n",
"But generally, in light of [*The Bitter Lesson*](http://www.incompleteideas.net/IncIdeas/BitterLesson.html) (I've mentioned this twice now because it's an important essay in the world of AI), generally the bigger your model (more learnable parameters) and the more data you have (more opportunities to learn), the better the performance.\n",
"\n",
Expand Down Expand Up @@ -1692,7 +1692,7 @@
"\n",
"# Create an EffNetB0 feature extractor\n",
"def create_effnetb0():\n",
" # 1. Get the base mdoel with pretrained weights and send to target device\n",
" # 1. Get the base model with pretrained weights and send to target device\n",
" weights = torchvision.models.EfficientNet_B0_Weights.DEFAULT\n",
" model = torchvision.models.efficientnet_b0(weights=weights).to(device)\n",
"\n",
Expand Down Expand Up @@ -2417,7 +2417,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Looks like our best model so far is 29 MB in size. We'll keep this in mind if we wanted to deploy it later on.\n",
"Looks like our best model so far is 29 MB in size. We'll keep this in mind if we want to deploy it later on.\n",
"\n",
"Time to make and visualize some predictions.\n",
"\n",
Expand Down Expand Up @@ -2595,7 +2595,7 @@
"\n",
"The main ideas you should take away from this Milestone Project 1 are:\n",
"\n",
"* The machine learning practioner's motto: *experiment, experiment, experiment!* (though we've been doing plenty of this already).\n",
"* The machine learning practitioner's motto: *experiment, experiment, experiment!* (though we've been doing plenty of this already).\n",
"* In the beginning, keep your experiments small so you can work fast, your first few experiments shouldn't take more than a few seconds to a few minutes to run.\n",
"* The more experiments you do, the quicker you can figure out what *doesn't* work.\n",
"* Scale up when you find something that works. For example, since we've found a pretty good performing model with EffNetB2 as a feature extractor, perhaps you'd now like to see what happens when you scale it up to the whole [Food101 dataset](https://pytorch.org/vision/main/generated/torchvision.datasets.Food101.html) from `torchvision.datasets`.\n",
Expand Down Expand Up @@ -2666,7 +2666,7 @@
"NUM_WORKERS = os.cpu_count() # use maximum number of CPUs for workers to load data \n",
"\n",
"# Note: this is an update version of data_setup.create_dataloaders to handle\n",
"# differnt train and test transforms.\n",
"# different train and test transforms.\n",
"def create_dataloaders(\n",
" train_dir, \n",
" test_dir, \n",
Expand Down

0 comments on commit 4f7e678

Please sign in to comment.