for(Long userID : Tools.getCSVUserIDs()) {
if(count % 50 == 0) System.out.println("Added "+count+" profiles to Corpus");
count++;
SimpleProfile profile = Profiler.loadCSVProfile(userID);
profile.reduceBy(reduction);
corpus.addDocument(profile.asDocument(topicType));
}
return corpus;
}
public static Corpus getFullProfileCorpus(String topicType) {