Search in sources :

Example 1 with ActiveLearningConfig

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

the class CreateDataLabelingJobActiveLearningSample method createDataLabelingJobActiveLearningSample.

static void createDataLabelingJobActiveLearningSample(String project, String displayName, String dataset, String instructionUri, String inputsSchemaUri, String annotationSpec) throws IOException {
    JobServiceSettings settings = JobServiceSettings.newBuilder().setEndpoint("us-central1-aiplatform.googleapis.com:443").build();
    String location = "us-central1";
    // the "close" method on the client to safely clean up any remaining background resources.
    try (JobServiceClient client = JobServiceClient.create(settings)) {
        JsonArray jsonAnnotationSpecs = new JsonArray();
        jsonAnnotationSpecs.add(annotationSpec);
        JsonObject jsonInputs = new JsonObject();
        jsonInputs.add("annotation_specs", jsonAnnotationSpecs);
        Value.Builder inputsBuilder = Value.newBuilder();
        JsonFormat.parser().merge(jsonInputs.toString(), inputsBuilder);
        Value inputs = inputsBuilder.build();
        ActiveLearningConfig activeLearningConfig = ActiveLearningConfig.newBuilder().setMaxDataItemCount(1).build();
        String datasetName = DatasetName.of(project, location, dataset).toString();
        DataLabelingJob dataLabelingJob = DataLabelingJob.newBuilder().setDisplayName(displayName).addDatasets(datasetName).setLabelerCount(1).setInstructionUri(instructionUri).setInputsSchemaUri(inputsSchemaUri).setInputs(inputs).putAnnotationLabels("aiplatform.googleapis.com/annotation_set_name", "data_labeling_job_active_learning").setActiveLearningConfig(activeLearningConfig).build();
        LocationName parent = LocationName.of(project, location);
        DataLabelingJob response = client.createDataLabelingJob(parent, dataLabelingJob);
        System.out.format("response: %s\n", response);
        System.out.format("Name: %s\n", response.getName());
    }
}
Also used : JsonArray(com.google.gson.JsonArray) ActiveLearningConfig(com.google.cloud.aiplatform.v1.ActiveLearningConfig) JobServiceSettings(com.google.cloud.aiplatform.v1.JobServiceSettings) Value(com.google.protobuf.Value) JobServiceClient(com.google.cloud.aiplatform.v1.JobServiceClient) JsonObject(com.google.gson.JsonObject) DataLabelingJob(com.google.cloud.aiplatform.v1.DataLabelingJob) LocationName(com.google.cloud.aiplatform.v1.LocationName)

Aggregations

ActiveLearningConfig (com.google.cloud.aiplatform.v1.ActiveLearningConfig)1 DataLabelingJob (com.google.cloud.aiplatform.v1.DataLabelingJob)1 JobServiceClient (com.google.cloud.aiplatform.v1.JobServiceClient)1 JobServiceSettings (com.google.cloud.aiplatform.v1.JobServiceSettings)1 LocationName (com.google.cloud.aiplatform.v1.LocationName)1 JsonArray (com.google.gson.JsonArray)1 JsonObject (com.google.gson.JsonObject)1 Value (com.google.protobuf.Value)1