Skip to content

Commit

Permalink
Added code to display images
Browse files Browse the repository at this point in the history
  • Loading branch information
GraemeMalcolm committed Oct 16, 2020
1 parent 19e27ce commit 5d0d18e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 05b - Convolutional Neural Networks (Tensorflow).ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"\n",
"\"Deep Learning\" is a general term that usually refers to the use of neural networks with multiple layers that synthesize the way the human brain learns and makes decisions. A convolutional neural network is a kind of neural network that extracts *features* from matrices of numeric values (often images) by convolving multiple filters over the matrix values to apply weights and identify patterns, such as edges, corners, and so on in an image. The numeric representations of these patterns are then passed to a fully-connected neural network layer to map the features to specific classes.\n",
"\n",
"There are several commonly used frameworks for creating CNNs. In this notebook, we'll build a simple example CNN using TensorFlow. The example is a classification model that can classify an image as a circle, a triangle, or a square.\n",
"There are several commonly used frameworks for creating CNNs. In this notebook, we'll build a simple example CNN using TensorFlow.\n",
"\n",
"## Install and import libraries\n",
"\n",
Expand Down

0 comments on commit 5d0d18e

Please sign in to comment.