From 1606de6c51d8813adefcab877b6056d03f5a52d2 Mon Sep 17 00:00:00 2001 From: Mudit Choraria <32506556+procode-dd@users.noreply.github.com> Date: Sun, 18 Nov 2018 08:25:17 +0530 Subject: [PATCH] Added a simple example for easy understanding. (#21991) --- guide/english/machine-learning/supervised-learning/index.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/guide/english/machine-learning/supervised-learning/index.md b/guide/english/machine-learning/supervised-learning/index.md index e65f341abe..a4ba33f7e9 100644 --- a/guide/english/machine-learning/supervised-learning/index.md +++ b/guide/english/machine-learning/supervised-learning/index.md @@ -22,11 +22,15 @@ The regression problems above can be turned into classification problems. Suppos #### Example 1: +Suppose you wanted someone to differentiate between an apple and a banana. With Supervised Learning, you need to teach him what is apple and what is banana. The more he learns, the more he understands, the smarter it becomes. Note that you need to know what kind of answer you want to get: apple or bananas (nothing else). [Inspired by: Thomas Abot](https://triskell.github.io/2016/11/13/Supervised-Learning-and-Unsupervised-Learning.html) + +#### Example 2: + > Given data about the size of houses on the real estate market, try to predict their price. Price as a function of size is a continuous output, so this is a regression problem. -#### Example 2: +#### Example 3: (a) Regression - For continuous-response values. For example given a picture of a person, we have to predict their age on the basis of the given picture