Search in sources :

Example 11 with PredictionServiceClient

use of com.google.cloud.automl.v1.PredictionServiceClient in project java-automl by googleapis.

the class TablesPredict method predict.

static void predict(String projectId, String modelId, List<Value> values) throws IOException {
    // the "close" method on the client to safely clean up any remaining background resources.
    try (PredictionServiceClient client = PredictionServiceClient.create()) {
        // Get the full path of the model.
        ModelName name = ModelName.of(projectId, "us-central1", modelId);
        Row row = Row.newBuilder().addAllValues(values).build();
        ExamplePayload payload = ExamplePayload.newBuilder().setRow(row).build();
        // Feature importance gives you visibility into how the features in a specific prediction
        // request informed the resulting prediction. For more info, see:
        // https://cloud.google.com/automl-tables/docs/features#local
        PredictRequest request = PredictRequest.newBuilder().setName(name.toString()).setPayload(payload).putParams("feature_importance", "true").build();
        PredictResponse response = client.predict(request);
        System.out.println("Prediction results:");
        for (AnnotationPayload annotationPayload : response.getPayloadList()) {
            TablesAnnotation tablesAnnotation = annotationPayload.getTables();
            System.out.format("Classification label: %s%n", tablesAnnotation.getValue().getStringValue());
            System.out.format("Classification score: %.3f%n", tablesAnnotation.getScore());
            // Get features of top importance
            tablesAnnotation.getTablesModelColumnInfoList().forEach(info -> System.out.format("\tColumn: %s - Importance: %.2f%n", info.getColumnDisplayName(), info.getFeatureImportance()));
        }
    }
}
Also used : ModelName(com.google.cloud.automl.v1beta1.ModelName) TablesAnnotation(com.google.cloud.automl.v1beta1.TablesAnnotation) PredictResponse(com.google.cloud.automl.v1beta1.PredictResponse) ExamplePayload(com.google.cloud.automl.v1beta1.ExamplePayload) Row(com.google.cloud.automl.v1beta1.Row) PredictRequest(com.google.cloud.automl.v1beta1.PredictRequest) PredictionServiceClient(com.google.cloud.automl.v1beta1.PredictionServiceClient) AnnotationPayload(com.google.cloud.automl.v1beta1.AnnotationPayload)

Example 12 with PredictionServiceClient

use of com.google.cloud.automl.v1.PredictionServiceClient in project java-automl by googleapis.

the class TranslatePredict method predict.

static void predict(String projectId, String modelId, String filePath) throws IOException {
    // the "close" method on the client to safely clean up any remaining background resources.
    try (PredictionServiceClient client = PredictionServiceClient.create()) {
        // Get the full path of the model.
        ModelName name = ModelName.of(projectId, "us-central1", modelId);
        String content = new String(Files.readAllBytes(Paths.get(filePath)));
        TextSnippet textSnippet = TextSnippet.newBuilder().setContent(content).build();
        ExamplePayload payload = ExamplePayload.newBuilder().setTextSnippet(textSnippet).build();
        PredictRequest predictRequest = PredictRequest.newBuilder().setName(name.toString()).setPayload(payload).build();
        PredictResponse response = client.predict(predictRequest);
        TextSnippet translatedContent = response.getPayload(0).getTranslation().getTranslatedContent();
        System.out.format("Translated Content: %s\n", translatedContent.getContent());
    }
}
Also used : ModelName(com.google.cloud.automl.v1.ModelName) TextSnippet(com.google.cloud.automl.v1.TextSnippet) PredictResponse(com.google.cloud.automl.v1.PredictResponse) ExamplePayload(com.google.cloud.automl.v1.ExamplePayload) PredictRequest(com.google.cloud.automl.v1.PredictRequest) PredictionServiceClient(com.google.cloud.automl.v1.PredictionServiceClient)

Aggregations

ModelName (com.google.cloud.automl.v1.ModelName)8 PredictionServiceClient (com.google.cloud.automl.v1.PredictionServiceClient)8 ExamplePayload (com.google.cloud.automl.v1.ExamplePayload)7 PredictResponse (com.google.cloud.automl.v1.PredictResponse)7 AnnotationPayload (com.google.cloud.automl.v1.AnnotationPayload)6 PredictRequest (com.google.cloud.automl.v1.PredictRequest)6 TextSnippet (com.google.cloud.automl.v1.TextSnippet)4 ModelName (com.google.cloud.automl.v1beta1.ModelName)4 PredictionServiceClient (com.google.cloud.automl.v1beta1.PredictionServiceClient)4 ByteString (com.google.protobuf.ByteString)4 Image (com.google.cloud.automl.v1.Image)3 AnnotationPayload (com.google.cloud.automl.v1beta1.AnnotationPayload)2 BatchPredictInputConfig (com.google.cloud.automl.v1beta1.BatchPredictInputConfig)2 BatchPredictOutputConfig (com.google.cloud.automl.v1beta1.BatchPredictOutputConfig)2 BatchPredictRequest (com.google.cloud.automl.v1beta1.BatchPredictRequest)2 BatchPredictResult (com.google.cloud.automl.v1beta1.BatchPredictResult)2 ExamplePayload (com.google.cloud.automl.v1beta1.ExamplePayload)2 OperationMetadata (com.google.cloud.automl.v1beta1.OperationMetadata)2 PredictResponse (com.google.cloud.automl.v1beta1.PredictResponse)2 HashMap (java.util.HashMap)2