System.out.println("Beginning complete Textwise classification...");
Profiler profiler = new Profiler();
while(!synchronisedUserIDList.isEmpty()) {
long currentID = synchronisedUserIDList.remove(0);
SimpleProfile profile = profiler.loadCSVProfile(currentID);
if(!profile.classifyTextwise()) {
System.err.println("Failed to classify profile "+currentID+" properly using Textwise");
return;
}
}
}