- Resource: Dataset
- TranslationDatasetMetadata
- ImageClassificationDatasetMetadata
- TextClassificationDatasetMetadata
- ImageObjectDetectionDatasetMetadata
- TextExtractionDatasetMetadata
- TextSentimentDatasetMetadata
- Methods
Resource: Dataset
A workspace for solving a single, particular machine learning (ML) problem. A workspace contains examples that may be annotated.
JSON representation | |
---|---|
{ "name": string, "displayName": string, "description": string, "exampleCount": integer, "createTime": string, "etag": string, "labels": { string: string, ... }, // Union field |
Fields | ||
---|---|---|
name |
Output only. The resource name of the dataset. Form: |
|
displayName |
Required. The name of the dataset to show in the interface. The name can be up to 32 characters long and can consist only of ASCII Latin letters A-Z and a-z, underscores (_), and ASCII digits 0-9. |
|
description |
User-provided description of the dataset. The description can be up to 25000 characters long. |
|
exampleCount |
Output only. The number of examples in the dataset. |
|
createTime |
Output only. Timestamp when this dataset was created. A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds. Example: |
|
etag |
Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. |
|
labels |
Optional. The labels with user-defined metadata to organize your dataset. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter. See https://goo.gl/xmQnxf for more information on and examples of labels. |
|
Union field dataset_metadata . Required. The dataset metadata that is specific to the problem type. dataset_metadata can be only one of the following: |
||
translationDatasetMetadata |
Metadata for a dataset used for translation. |
|
imageClassificationDatasetMetadata |
Metadata for a dataset used for image classification. |
|
textClassificationDatasetMetadata |
Metadata for a dataset used for text classification. |
|
imageObjectDetectionDatasetMetadata |
Metadata for a dataset used for image object detection. |
|
textExtractionDatasetMetadata |
Metadata for a dataset used for text extraction. |
|
textSentimentDatasetMetadata |
Metadata for a dataset used for text sentiment. |
TranslationDatasetMetadata
Dataset metadata that is specific to translation.
JSON representation | |
---|---|
{ "sourceLanguageCode": string, "targetLanguageCode": string } |
Fields | |
---|---|
sourceLanguageCode |
Required. The BCP-47 language code of the source language. |
targetLanguageCode |
Required. The BCP-47 language code of the target language. |
ImageClassificationDatasetMetadata
Dataset metadata that is specific to image classification.
JSON representation | |
---|---|
{
"classificationType": enum ( |
Fields | |
---|---|
classificationType |
Required. Type of the classification problem. |
TextClassificationDatasetMetadata
Dataset metadata for classification.
JSON representation | |
---|---|
{
"classificationType": enum ( |
Fields | |
---|---|
classificationType |
Required. Type of the classification problem. |
ImageObjectDetectionDatasetMetadata
Dataset metadata specific to image object detection.
TextExtractionDatasetMetadata
Dataset metadata that is specific to text extraction
TextSentimentDatasetMetadata
Dataset metadata for text sentiment.
JSON representation | |
---|---|
{ "sentimentMax": integer } |
Fields | |
---|---|
sentimentMax |
Required. A sentiment is expressed as an integer ordinal, where higher value means a more positive sentiment. The range of sentiments that will be used is between 0 and sentimentMax (inclusive on both ends), and all the values in the range must be represented in the dataset before a model can be created. sentimentMax value must be between 1 and 10 (inclusive). |
Methods |
|
---|---|
|
Creates a dataset. |
|
Deletes a dataset and all of its contents. |
|
Exports dataset's data to the provided output location. |
|
Gets a dataset. |
|
Gets the access control policy for a resource. |
|
Imports data into a dataset. |
|
Lists datasets in a project. |
|
Updates a dataset. |
|
Sets the access control policy on the specified resource. |