Skip to content

Commit 7833ea7

Browse files
authored
Update site/en/tutorials/keras/regression.ipynb
1 parent 0675e5d commit 7833ea7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/en/tutorials/keras/regression.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1368,7 +1368,7 @@
13681368
"\n",
13691369
"This notebook introduced a few techniques to handle a regression problem. Here are a few more tips that may help:\n",
13701370
"\n",
1371-
"- Mean squared error (MSE) (`tf.keras.losses.MeanSquaredError`) and mean absolute error (MAE) (`tf.losses.MeanAbsoluteError`) are common loss functions used for regression problems. MAE is less sensitive to outliers. Different loss functions are used for classification problems.\n",
1371+
"- Mean squared error (MSE) (`tf.keras.losses.MeanSquaredError`) and mean absolute error (MAE) (`tf.keras.losses.MeanAbsoluteError`) are common loss functions used for regression problems. MAE is less sensitive to outliers. Different loss functions are used for classification problems.\n",
13721372
"- Similarly, evaluation metrics used for regression differ from classification.\n",
13731373
"- When numeric input data features have values with different ranges, each feature should be scaled independently to the same range.\n",
13741374
"- Overfitting is a common problem for DNN models, though it wasn't a problem for this tutorial. Visit the [Overfit and underfit](overfit_and_underfit.ipynb) tutorial for more help with this."

0 commit comments

Comments
 (0)