pytorch-deep-learning icon indicating copy to clipboard operation
pytorch-deep-learning copied to clipboard

Evaluation of Model

Open kumarsiddappa-git opened this issue 1 year ago • 3 comments

Hi All ,

Wanted to understand , when we evaluate using the plot_decision_boundary. But how do we test the model apart from it.

Do we give the new test values to the model and then plot it again , would this steps followed in real world?

Can we have on session explaining the plot_decision_boundary module.

Thanks Kumar.S

kumarsiddappa-git avatar Dec 02 '23 15:12 kumarsiddappa-git

In the moon_cirlce or circle , Y indicates the label weather its red or blue, but what does the columns in the X indicates ? if we are using linear regression , the X has two columns which are X1 and X2 are placed in the equation y=w1X1+w2X2+B and predict Y , what are we predicting here ? we do not have Y values apart from 0 and 1 classes ? could you please the problem statement once more

kumarsiddappa-git avatar Dec 05 '23 05:12 kumarsiddappa-git

X1 and X2 are the x and y coordinates in a cartesian coordinate system, respectively, and y is the label/class we're trying to predict. The decision boundary simply separates the two classes we have. We need only 0 and 1; there are only two classes.

output

sascharo avatar Dec 05 '23 06:12 sascharo

Thanks

kumarsiddappa-git avatar Dec 11 '23 08:12 kumarsiddappa-git