Jean-Francois Leveque

Correction logique après erreur d'étourdi

......@@ -70,7 +70,7 @@ public class PreprocessingRunner implements ApplicationRunner {
Random random = new Random();
Integer randomInteger;
while (annotatedChosen.size() <= size * annotatePercent / 100.0) {
while (annotatedChosen.size() < size * annotatePercent / 100.0) {
randomInteger = new Integer(random.nextInt(size));
if (!annotatedChosen.contains(randomInteger)) {
annotatedChosen.add(randomInteger);
......