What does this sentence in the programming assignment mean -:
The lines represent ‘equal distance’ boundaries where the distance between center points is equal.
(in multi-class classification section)
It means that:
- you locate the center point of each of the groups
- pick any two center points out
- draw a line to connect the two points
- at the mid-point of the line, draw a perpendicular line that goes through the mid-point
- that perpendicular line is a boundary line.
Cheers,
Raymond
1 Like
That clears my doubt so well! Thanks!