predict(prediction, "�Es esta frase en Espa�ol?");
predict(prediction, "Est-ce cette phrase en Fran�ais?");
}
private static void train(Prediction prediction) throws IOException {
Training training = new Training();
training.setId(MODEL_ID);
training.setStorageDataLocation(STORAGE_DATA_LOCATION);
prediction.trainedmodels().insert(training).execute();
System.out.println("Training started.");
System.out.print("Waiting for training to complete");
System.out.flush();
int triesCounter = 0;
while (triesCounter < 100) {
// NOTE: if model not found, it will throw an HttpResponseException
// with a 404 error
try {
HttpResponse response = prediction.trainedmodels()
.get(MODEL_ID).executeUnparsed();
if (response.getStatusCode() == 200) {
training = response.parseAs(Training.class);
String trainingStatus = training.getTrainingStatus();
if (trainingStatus.equals("DONE")) {
System.out.println();
System.out.println("Training completed.");
System.out.println(training.getModelInfo());
return;
}
}
response.ignore();
} catch (HttpResponseException e) {