Skip to content

Commit

Permalink
Merge pull request microsoft#206 from Illuminate-dev/fix-typo
Browse files Browse the repository at this point in the history
fix typo in IntroKeras.ipynb
  • Loading branch information
BethanyJep authored Jul 5, 2023
2 parents 8668101 + d6bb300 commit 10082ab
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion lessons/3-NeuralNetworks/05-Frameworks/IntroKeras.ipynb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"cells": [
{
"attachments": {},
"cell_type": "markdown",
"metadata": {
"id": "En2vX4FuwHlu"
Expand All @@ -16,6 +17,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {
"id": "8cACQoFMwHl3"
Expand Down Expand Up @@ -65,6 +67,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {
"id": "6tp2xGV7wHl4"
Expand All @@ -83,6 +86,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {
"id": "A10prCPowHl7"
Expand Down Expand Up @@ -185,6 +189,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand All @@ -206,6 +211,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {
"id": "SjPlpf2-wHl8"
Expand Down Expand Up @@ -251,6 +257,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand Down Expand Up @@ -292,6 +299,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand All @@ -313,14 +321,15 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"After compiling the model, we can do the actual training by calling `fit` method. The most important parameters are:\n",
"* `x` and `y` specify training data, features and labels respectively\n",
"* If we want validation to be performed on each epoch, we can specify `validation_data` parameter, which would be a tuple of features and labels\n",
"* `epochs` specified the number of epochs\n",
"* If we want training to happen in minibatches, we can speficu `batch_size` parameter. You can also pre-batch the data manually before passing it to `x`/`y`/`validation_data`, in which case you do not need `batch_size`"
"* If we want training to happen in minibatches, we can specify `batch_size` parameter. You can also pre-batch the data manually before passing it to `x`/`y`/`validation_data`, in which case you do not need `batch_size`"
]
},
{
Expand Down Expand Up @@ -370,6 +379,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {
"id": "s4_Atvn5K4K9"
Expand Down Expand Up @@ -423,6 +433,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {
"id": "dvAiaj_JndyP"
Expand Down Expand Up @@ -508,6 +519,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand Down Expand Up @@ -578,6 +590,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand Down Expand Up @@ -634,6 +647,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand All @@ -647,6 +661,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {
"id": "BmHNhUU8bqEX"
Expand All @@ -669,6 +684,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {
"id": "gZ-kWx84bMDH"
Expand All @@ -683,6 +699,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {
"id": "yX6hqiafwHl9"
Expand Down

0 comments on commit 10082ab

Please sign in to comment.