Day 12

Today, while I finished running my tests on PCA without whitening, I wrote my outline for the presentation on the research I am doing. In the outline, I divided my presentation into two sections: the first is Reason/Explanation and the second is Methods and Results. I went into much detail describing the reasoning and background behind my project, while I was more general about the methods and results of each of my experiments. This is because I have only finished one experiment so far, so I have limited results to share. (However, I included the table of results from my first experiment, evaluating preprocessors, in the outline.) After I finished writing my outline, I wrote code to produce line graphs of the data from the PCA tests, which were finally done running. The graph shows mean-class accuracy in relation to the number of components. Unfortunately, the graph did not show any obvious pattern, but it did show that PCA with whitening is significantly different than PCA with whitening.
Also, today I started coding for my next experiment, which is to evaluate different machine learning classifiers. I was able to reuse much of the code from the preprocessing experiment, but I had to alter it to test different classifiers with certain preprocessors instead of testing different preprocessors with the same classifier. I was even able to run thirty trials and record the results from each of the first two classifiers, which are Linear SVM and SVM-RBF. Tomorrow I plan to begin testing the other classifiers, which will be more challenging than the first two because I have to determine the best parameters and preprocessing methods to use for them, unlike for the SVMs.

Comments

Popular posts from this blog

Day 6

Day 14

Day 3