Struct gapi_grpc::google::cloud::aiplatform::v1::DataLabelingJob[][src]

pub struct DataLabelingJob {
    pub name: String,
    pub display_name: String,
    pub datasets: Vec<String>,
    pub annotation_labels: HashMap<String, String>,
    pub labeler_count: i32,
    pub instruction_uri: String,
    pub inputs_schema_uri: String,
    pub inputs: Option<Value>,
    pub state: i32,
    pub labeling_progress: i32,
    pub current_spend: Option<Money>,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub error: Option<Status>,
    pub labels: HashMap<String, String>,
    pub specialist_pools: Vec<String>,
    pub encryption_spec: Option<EncryptionSpec>,
    pub active_learning_config: Option<ActiveLearningConfig>,
}

DataLabelingJob is used to trigger a human labeling job on unlabeled data from the following Dataset:

Fields

name: String

Output only. Resource name of the DataLabelingJob.

display_name: String

Required. The user-defined name of the DataLabelingJob. The name can be up to 128 characters long and can be consist of any UTF-8 characters. Display name of a DataLabelingJob.

datasets: Vec<String>

Required. Dataset resource names. Right now we only support labeling from a single Dataset. Format: projects/{project}/locations/{location}/datasets/{dataset}

annotation_labels: HashMap<String, String>

Labels to assign to annotations generated by this DataLabelingJob.

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. See https://goo.gl/xmQnxf for more information and examples of labels. System reserved label keys are prefixed with “aiplatform.googleapis.com/” and are immutable.

labeler_count: i32

Required. Number of labelers to work on each DataItem.

instruction_uri: String

Required. The Google Cloud Storage location of the instruction pdf. This pdf is shared with labelers, and provides detailed description on how to label DataItems in Datasets.

inputs_schema_uri: String

Required. Points to a YAML file stored on Google Cloud Storage describing the config for a specific type of DataLabelingJob. The schema files that can be used here are found in the https://storage.googleapis.com/google-cloud-aiplatform bucket in the /schema/datalabelingjob/inputs/ folder.

inputs: Option<Value>

Required. Input config parameters for the DataLabelingJob.

state: i32

Output only. The detailed state of the job.

labeling_progress: i32

Output only. Current labeling job progress percentage scaled in interval [0, 100], indicating the percentage of DataItems that has been finished.

current_spend: Option<Money>

Output only. Estimated cost(in US dollars) that the DataLabelingJob has incurred to date.

create_time: Option<Timestamp>

Output only. Timestamp when this DataLabelingJob was created.

update_time: Option<Timestamp>

Output only. Timestamp when this DataLabelingJob was updated most recently.

error: Option<Status>

Output only. DataLabelingJob errors. It is only populated when job’s state is JOB_STATE_FAILED or JOB_STATE_CANCELLED.

labels: HashMap<String, String>

The labels with user-defined metadata to organize your DataLabelingJobs.

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.

See https://goo.gl/xmQnxf for more information and examples of labels. System reserved label keys are prefixed with “aiplatform.googleapis.com/” and are immutable. Following system labels exist for each DataLabelingJob:

specialist_pools: Vec<String>

The SpecialistPools’ resource names associated with this job.

encryption_spec: Option<EncryptionSpec>

Customer-managed encryption key spec for a DataLabelingJob. If set, this DataLabelingJob will be secured by this key.

Note: Annotations created in the DataLabelingJob are associated with the EncryptionSpec of the Dataset they are exported to.

active_learning_config: Option<ActiveLearningConfig>

Parameters that configure the active learning pipeline. Active learning will label the data incrementally via several iterations. For every iteration, it will select a batch of data based on the sampling strategy.

Implementations

impl DataLabelingJob[src]

pub fn state(&self) -> JobState[src]

Returns the enum value of state, or the default if the field is set to an invalid enum value.

pub fn set_state(&mut self, value: JobState)[src]

Sets state to the provided enum value.

Trait Implementations

impl Clone for DataLabelingJob[src]

impl Debug for DataLabelingJob[src]

impl Default for DataLabelingJob[src]

impl Message for DataLabelingJob[src]

impl PartialEq<DataLabelingJob> for DataLabelingJob[src]

impl StructuralPartialEq for DataLabelingJob[src]

Auto Trait Implementations

impl RefUnwindSafe for DataLabelingJob

impl Send for DataLabelingJob

impl Sync for DataLabelingJob

impl Unpin for DataLabelingJob

impl UnwindSafe for DataLabelingJob

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]