CS434 Assignment  3 Due Wed Nov 12th in class

Part I: Experiments with Support Vector Machines
    For SMO, there are three parameters that we must consider:
Note that SMO will run out of memory with the default java parameters. I use the command java -Xmx200m -jar weka.jar to request 200 megabytes of memory for the java vm
            C     kernel     kernel-params     Validation error    
   
            ccc     kkk         ppp                     eee                   
where kkk is "polynomial" or "rbf" and ppp is the parameter value of the kernel (exponent for polynomial and gamma for rbf). Include one line for each combination of C, kernel, and kernel parameters that you tried. Finally, of course, report your chosen parameters and the test set error when training on the entire training set.Part II: Bagging and Boosting.
Part II. Experiments with Bagging and Boosting
  1. Which algorithms+data sets are improved by Bagging?  Can you explain these results in terms of the bias and variance of the learning algorithms applied to these domains?
  2. Which algorithms+data sets are improved by Boosting? Can you provide possible explanations for why boosting can sometimes lead to worsened performance?