Search in sources :

Example 16 with PredictResponse

use of com.google.cloud.aiplatform.v1.PredictResponse in project java-aiplatform by googleapis.

the class PredictTextEntityExtractionSample method predictTextEntityExtraction.

static void predictTextEntityExtraction(String project, String content, String endpointId) throws IOException {
    PredictionServiceSettings predictionServiceSettings = PredictionServiceSettings.newBuilder().setEndpoint("us-central1-aiplatform.googleapis.com:443").build();
    // the "close" method on the client to safely clean up any remaining background resources.
    try (PredictionServiceClient predictionServiceClient = PredictionServiceClient.create(predictionServiceSettings)) {
        String location = "us-central1";
        String jsonString = "{\"content\": \"" + content + "\"}";
        EndpointName endpointName = EndpointName.of(project, location, endpointId);
        TextExtractionPredictionInstance instance = TextExtractionPredictionInstance.newBuilder().setContent(content).build();
        List<Value> instances = new ArrayList<>();
        instances.add(ValueConverter.toValue(instance));
        PredictResponse predictResponse = predictionServiceClient.predict(endpointName, instances, ValueConverter.EMPTY_VALUE);
        System.out.println("Predict Text Entity Extraction Response");
        System.out.format("\tDeployed Model Id: %s\n", predictResponse.getDeployedModelId());
        System.out.println("Predictions");
        for (Value prediction : predictResponse.getPredictionsList()) {
            TextExtractionPredictionResult.Builder resultBuilder = TextExtractionPredictionResult.newBuilder();
            TextExtractionPredictionResult result = (TextExtractionPredictionResult) ValueConverter.fromValue(resultBuilder, prediction);
            for (int i = 0; i < result.getIdsCount(); i++) {
                long textStartOffset = result.getTextSegmentStartOffsets(i);
                long textEndOffset = result.getTextSegmentEndOffsets(i);
                String entity = content.substring((int) textStartOffset, (int) textEndOffset);
                System.out.format("\tEntity: %s\n", entity);
                System.out.format("\tEntity type: %s\n", result.getDisplayNames(i));
                System.out.format("\tConfidences: %f\n", result.getConfidences(i));
                System.out.format("\tIDs: %d\n", result.getIds(i));
            }
        }
    }
}
Also used : TextExtractionPredictionInstance(com.google.cloud.aiplatform.v1.schema.predict.instance.TextExtractionPredictionInstance) ArrayList(java.util.ArrayList) PredictResponse(com.google.cloud.aiplatform.v1.PredictResponse) PredictionServiceClient(com.google.cloud.aiplatform.v1.PredictionServiceClient) PredictionServiceSettings(com.google.cloud.aiplatform.v1.PredictionServiceSettings) TextExtractionPredictionResult(com.google.cloud.aiplatform.v1.schema.predict.prediction.TextExtractionPredictionResult) EndpointName(com.google.cloud.aiplatform.v1.EndpointName) Value(com.google.protobuf.Value)

Example 17 with PredictResponse

use of com.google.cloud.aiplatform.v1.PredictResponse in project java-aiplatform by googleapis.

the class PredictImageObjectDetectionSample method predictImageObjectDetection.

static void predictImageObjectDetection(String project, String fileName, String endpointId) throws IOException {
    PredictionServiceSettings settings = PredictionServiceSettings.newBuilder().setEndpoint("us-central1-aiplatform.googleapis.com:443").build();
    // the "close" method on the client to safely clean up any remaining background resources.
    try (PredictionServiceClient predictionServiceClient = PredictionServiceClient.create(settings)) {
        String location = "us-central1";
        EndpointName endpointName = EndpointName.of(project, location, endpointId);
        byte[] contents = Base64.encodeBase64(Files.readAllBytes(Paths.get(fileName)));
        String content = new String(contents, StandardCharsets.UTF_8);
        ImageObjectDetectionPredictionParams params = ImageObjectDetectionPredictionParams.newBuilder().setConfidenceThreshold((float) (0.5)).setMaxPredictions(5).build();
        ImageObjectDetectionPredictionInstance instance = ImageObjectDetectionPredictionInstance.newBuilder().setContent(content).build();
        List<Value> instances = new ArrayList<>();
        instances.add(ValueConverter.toValue(instance));
        PredictResponse predictResponse = predictionServiceClient.predict(endpointName, instances, ValueConverter.toValue(params));
        System.out.println("Predict Image Object Detection Response");
        System.out.format("\tDeployed Model Id: %s\n", predictResponse.getDeployedModelId());
        System.out.println("Predictions");
        for (Value prediction : predictResponse.getPredictionsList()) {
            ImageObjectDetectionPredictionResult.Builder resultBuilder = ImageObjectDetectionPredictionResult.newBuilder();
            ImageObjectDetectionPredictionResult result = (ImageObjectDetectionPredictionResult) ValueConverter.fromValue(resultBuilder, prediction);
            for (int i = 0; i < result.getIdsCount(); i++) {
                System.out.printf("\tDisplay name: %s\n", result.getDisplayNames(i));
                System.out.printf("\tConfidences: %f\n", result.getConfidences(i));
                System.out.printf("\tIDs: %d\n", result.getIds(i));
                System.out.printf("\tBounding boxes: %s\n", result.getBboxes(i));
            }
        }
    }
}
Also used : ImageObjectDetectionPredictionInstance(com.google.cloud.aiplatform.v1.schema.predict.instance.ImageObjectDetectionPredictionInstance) ArrayList(java.util.ArrayList) PredictResponse(com.google.cloud.aiplatform.v1.PredictResponse) ImageObjectDetectionPredictionParams(com.google.cloud.aiplatform.v1.schema.predict.params.ImageObjectDetectionPredictionParams) PredictionServiceClient(com.google.cloud.aiplatform.v1.PredictionServiceClient) PredictionServiceSettings(com.google.cloud.aiplatform.v1.PredictionServiceSettings) EndpointName(com.google.cloud.aiplatform.v1.EndpointName) Value(com.google.protobuf.Value) ImageObjectDetectionPredictionResult(com.google.cloud.aiplatform.v1.schema.predict.prediction.ImageObjectDetectionPredictionResult)

Aggregations

EndpointName (com.google.cloud.aiplatform.v1.EndpointName)8 PredictResponse (com.google.cloud.aiplatform.v1.PredictResponse)8 PredictionServiceClient (com.google.cloud.aiplatform.v1.PredictionServiceClient)8 PredictionServiceSettings (com.google.cloud.aiplatform.v1.PredictionServiceSettings)8 Value (com.google.protobuf.Value)8 ExamplePayload (com.google.cloud.automl.v1.ExamplePayload)7 ModelName (com.google.cloud.automl.v1.ModelName)7 PredictResponse (com.google.cloud.automl.v1.PredictResponse)7 PredictionServiceClient (com.google.cloud.automl.v1.PredictionServiceClient)7 AnnotationPayload (com.google.cloud.automl.v1.AnnotationPayload)6 PredictRequest (com.google.cloud.automl.v1.PredictRequest)6 ArrayList (java.util.ArrayList)5 TextSnippet (com.google.cloud.automl.v1.TextSnippet)4 ByteString (com.google.protobuf.ByteString)4 Image (com.google.cloud.automl.v1.Image)3 ListValue (com.google.protobuf.ListValue)3 ClassificationPredictionResult (com.google.cloud.aiplatform.v1.schema.predict.prediction.ClassificationPredictionResult)2 AnnotationPayload (com.google.cloud.automl.v1beta1.AnnotationPayload)2 ExamplePayload (com.google.cloud.automl.v1beta1.ExamplePayload)2 ModelName (com.google.cloud.automl.v1beta1.ModelName)2