Skip to content

Commit 6a8b8fc

Browse files
authored
typo
1 parent d6fd627 commit 6a8b8fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/core/tutorials/keras/basic_regression.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
},
116116
"cell_type": "markdown",
117117
"source": [
118-
"In a *regression* problem, we aim to predict the output of a continous value, like a price or a probability. Contrast this with a *classification* problem, where we aim to predict a discrete label (for example, where a picture contains an apple or an orange). \n",
118+
"In a *regression* problem, we aim to predict the output of a continuous value, like a price or a probability. Contrast this with a *classification* problem, where we aim to predict a discrete label (for example, where a picture contains an apple or an orange). \n",
119119
"\n",
120120
"This notebook builds a model to predict the median price of homes in a Boston suburb during the mid-1970s. To do this, we'll provide the model with some data points about the suburb, such as the crime rate and the local property tax rate.\n",
121121
"\n",
@@ -342,7 +342,7 @@
342342
"source": [
343343
"## Create the model\n",
344344
"\n",
345-
"Let's build our model. Here, we'll use a `Sequential` model with two densely connected hidden layers, and an output later that returns a single, continous value. The model building steps are wrapped in a function, `build_model`, since we'll create a second model, later on."
345+
"Let's build our model. Here, we'll use a `Sequential` model with two densely connected hidden layers, and an output later that returns a single, continuous value. The model building steps are wrapped in a function, `build_model`, since we'll create a second model, later on."
346346
]
347347
},
348348
{

0 commit comments

Comments
 (0)