Change "revisit ... into" to "revisit ... using"

This commit is contained in:
Joe Bender 2020-04-15 14:08:40 -04:00 committed by GitHub
parent f524b58c53
commit 6cb41ce32d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1280,7 +1280,7 @@
"source": [ "source": [
"In other words, to recap, a neural network is a particular kind of machine learning model, which fits right in to Samuel's original conception. Neural networks are special because they are highly flexible, which means they can solve an unusually wide range of problems just by finding the right weights. This is powerful, because stochastic gradient descent provides us a way to find those weight values automatically.\n", "In other words, to recap, a neural network is a particular kind of machine learning model, which fits right in to Samuel's original conception. Neural networks are special because they are highly flexible, which means they can solve an unusually wide range of problems just by finding the right weights. This is powerful, because stochastic gradient descent provides us a way to find those weight values automatically.\n",
"\n", "\n",
"Having zoomed out, let's now zoom back in and revisit our image classification problem into Samuel's framework.\n", "Having zoomed out, let's now zoom back in and revisit our image classification problem using Samuel's framework.\n",
"\n", "\n",
"Our inputs, those are the images. Our weights, those are the weights in the neural net. Our model is a neural net. Our results -- those are the values that are calculated by the neural net, like \"dog\" or \"cat\".\n", "Our inputs, those are the images. Our weights, those are the weights in the neural net. Our model is a neural net. Our results -- those are the values that are calculated by the neural net, like \"dog\" or \"cat\".\n",
"\n", "\n",