Skip to content

Fix a couple of typos in the colab notebook #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 28, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions GestureToEmoji/arduino_tinyml_workshop.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"source": [
"# Graph Data (optional)\n",
"\n",
"We'll graph the input files on two separate graphs, acceleration and gyroscope, as each data set has different units and scale"
"We'll graph the input files on two separate graphs, acceleration and gyroscope, as each data set has different units and scale."
]
},
{
Expand Down Expand Up @@ -148,7 +148,7 @@
"source": [
"## Parse and prepare the data\n",
"\n",
"The next cell parses the csv files and transforms them to a format that will be used to train the full connected neural network.\n",
"The next cell parses the csv files and transforms them to a format that will be used to train the fully connected neural network.\n",
"\n",
"Update the `GESTURES` list with the gesture data you've collected in `.csv` format.\n"
]
Expand Down Expand Up @@ -241,11 +241,11 @@
"source": [
"## Randomize and split the input and output pairs for training\n",
"\n",
"Randomly sprint the input and ouput pairs into sets of data. 60% for training, 20% for validation, and 20% for testing.\n",
"Randomly split input and output pairs into sets of data: 60% for training, 20% for validation, and 20% for testing.\n",
"\n",
" - the training set is used to train the model\n",
" - the validatiin set is used to measure how well the model is performing during training\n",
" - the testing set is used test the model after training"
" - the validation set is used to measure how well the model is performing during training\n",
" - the testing set is used to test the model after training"
]
},
{
Expand Down Expand Up @@ -404,7 +404,7 @@
"source": [
"### Graph the mean absolute error\n",
"\n",
"[Mean absolute error](https://en.wikipedia.org/wiki/Mean_absolute_error), is another metric to judge the performance of the model.\n",
"[Mean absolute error](https://en.wikipedia.org/wiki/Mean_absolute_error) is another metric to judge the performance of the model.\n",
"\n"
]
},
Expand Down Expand Up @@ -547,4 +547,4 @@
]
}
]
}
}