![]() |
Classifying Handwritten Digits: 1 vs. 5
I don't quite understand the first classification method given by the problem: "Linear Regression for classification followed by pocket for improvement". Since the weight returned by linear regression is an analytically optimal result, how can the pocket algorithm improve it?
|
Re: Classifying Handwritten Digits: 1 vs. 5
It is only analytically optimal for regression. It can be suboptimal for classification.
Quote:
|
Re: Classifying Handwritten Digits: 1 vs. 5
Hi Professor, you said that the weight vector w learnted from the Linear Regression could be suboptimal for classification. However, after run the pocket algorithm with 1,000,000 iteration, the w still not change, which means that the w learnt from the Linear Regression is optimal. Is that true? Maybe I made some mistake.
|
Re: Classifying Handwritten Digits: 1 vs. 5
The pocket algorithm indeed is able to improve the linear regression. Mine decreased the in-sample error from 0.8% to around 0.4%.
|
Re: Classifying Handwritten Digits: 1 vs. 5
Do you set the w learnt from Linear Regression as the initial w for Pocket Algorithm? I did like that, but without any improvement. Maybe some mistakes.
|
Re: Classifying Handwritten Digits: 1 vs. 5
Any one of these three can happen:
1) the linear regression weights are optimal 2) the linear regression weights are not optimal and the PLA/Pocket algorithm can improve the weights. 3) the linear regression weights are not optimal and the PLA/Pocket algorithm cannot improve the weights. In practice, we will not know which case we are in because actually finding the optimal weights is an NP-hard combinatorial optimization problem. However, no matter which case we are in, other than some extra CPU cycles, there is no harm done in running the pocket algorithm on the regression weights to see if they can be improved. Quote:
|
Re: Classifying Handwritten Digits: 1 vs. 5
Quote:
|
Re: Classifying Handwritten Digits: 1 vs. 5
Does the in-samle-error should use the square error formula, like the one of Linear Regression? Or the in-sample-error of binary function?
|
Re: Classifying Handwritten Digits: 1 vs. 5
Binary classification error.
Quote:
|
Re: Classifying Handwritten Digits: 1 vs. 5
How to plot the training and the test data, together with the separators learnt by using a 3rd order polynomial transform. Actually, the 3rd order polynomial hypothesis is a unclear formula with the two features. Then, how to plot this polynomial hypothesis in a two dementional axis?
|
All times are GMT -7. The time now is 03:42 PM. |
Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.
The contents of this forum are to be used ONLY by readers of the Learning From Data book by Yaser S. Abu-Mostafa, Malik Magdon-Ismail, and Hsuan-Tien Lin, and participants in the Learning From Data MOOC by Yaser S. Abu-Mostafa. No part of these contents is to be communicated or made accessible to ANY other person or entity.