Package com.google.api.services.prediction.model

Examples of com.google.api.services.prediction.model.Training


    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) {
View Full Code Here

TOP

Related Classes of com.google.api.services.prediction.model.Training

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.