I was looking in the code of BiuteeMain.java and came across this code for the doTraining and doTesting methods:
private static void doTraining(String configPath) throws Throwable {
RTEPairsETETrainer.initAndRun(configPath);
}
private static void doTesting(String configPath) throws Throwable {
RTEPairsETETrainer.initAndRun(configPath);
}
Can you please explain me why they both use RTEPairsETETrainer ?
I have seen that there is also a class RTEPairsETETester, shouldn't it be used in the doTesting method ?
Regards,
Daniel Toniuc