System.out.println("THREAD "+threadNum+": Starting up");
final int iReduction = reduction;
final double fReduction = reduction/10.0;
String[] topicTypes = {"alchemy","calais","textwiseproper"};
for(String topicType : topicTypes) {
Corpus corpus = Corpus.loadLabelled(topicType, "allprofiles-unstemmed-"+topicType+"-top3");
final Corpus fCorpus = corpus.randomlyRemove(fReduction);
System.out.println(fCorpus.size());
final int fThread=threadNum;
threadNum++;
Thread thread = new Thread(){
public void run() {
double[] alphas = {0.25,0.5,0.75,1.0,1.25,1.5,1.75,2.0};