X Tutup
Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

AutoML Samples

Open in Cloud Shell

This directory contains samples for the Google Cloud AutoML APIs - docs

We highly reccommend that you refer to the official documentation pages:

This API is part of the larger collection of Cloud Machine Learning APIs.

These Java samples demonstrates how to access the Cloud AutoML API using the Google Cloud Client Library for Java.

Build the samples

Install Maven.

Build your project with:

mvn clean package

Sample Types

There are two types of samples: Base and API Specific

The base samples make up a set of samples that have code that is identical or nearly identical for each AutoML Type. Meaning that for "Base" samples you can use them with any AutoML Type. However, for API Specific samples, there will be a unique sample for each AutoML type. See the below list for more info.

Base Samples

Dataset Management

  • Import Dataset
  • List Datasets - For each AutoML Type the metadata field inside the dataset is unique, therefore each AutoML Type will have a small section of code to print out the metadata field.
  • Get Dataset - For each AutoML Type the metadata field inside the dataset is unique, therefore each AutoML Type will have a small section of code to print out the metadata field.
  • Export Dataset
  • Delete Dataset

Model Management

  • List Models
  • List Model Evaluation - For each AutoML Type the metrics field inside the model is unique, therefore each AutoML Type will have a small section of code to print out the metrics field.
  • Get Model
  • Get Model Evaluation - For each AutoML Type the metrics field inside the model is unique, therefore each AutoML Type will have a small section of code to print out the metrics field.
  • Delete Model
  • Deploy Model - Not supported by Translation
  • Uneploy Model - Not supported by Translation

Batch Prediction

  • Batch Predict - Supported by: Natural Language Entity Extraction, Vision Classification, and Vision Object Detection.

Operation Management

AutoML Type Specific Samples

Translation

Natural Language Entity Extraction

Natural Language Sentiment Analysis

Natural Language Text Classification

Vision Classification

Vision Object Detection

X Tutup