Skip to content

TrainingJobProps

Properties for defining a TrainingJob.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-paiplugin-trainingjob

Initializer

using AlibabaCloud.SDK.ROS.CDK.Paiplugin;
new TrainingJobProps {
    object Algorithm,
    object CampaignId,
    object DataPath,
    object Name,
    object UserConfig,
    object Remark = null,
    object WaitForTrainingFinish = null
};

Properties

Name Type Description
Algorithm object Property algorithm: The algorithm used in training.
CampaignId object Property campaignId: The related campaign Id.
DataPath object Property dataPath: The training data path in OSS bucket.
Name object Property name: The name of training job.
UserConfig object Property userConfig: User configuration is used to set parameters such as start_date and end_date to delineate the time range of modeling data.
Remark object Property remark: The remark of training job.
WaitForTrainingFinish object Property waitForTrainingFinish: Whether resource creation waits for the training task to complete.The longest waiting time is 40 minutes.

AlgorithmRequired

public object Algorithm { get; set; }
  • Type: object

Property algorithm: The algorithm used in training.


CampaignIdRequired

public object CampaignId { get; set; }
  • Type: object

Property campaignId: The related campaign Id.


DataPathRequired

public object DataPath { get; set; }
  • Type: object

Property dataPath: The training data path in OSS bucket.


NameRequired

public object Name { get; set; }
  • Type: object

Property name: The name of training job.


UserConfigRequired

public object UserConfig { get; set; }
  • Type: object

Property userConfig: User configuration is used to set parameters such as start_date and end_date to delineate the time range of modeling data.


RemarkOptional

public object Remark { get; set; }
  • Type: object

Property remark: The remark of training job.


WaitForTrainingFinishOptional

public object WaitForTrainingFinish { get; set; }
  • Type: object

Property waitForTrainingFinish: Whether resource creation waits for the training task to complete.The longest waiting time is 40 minutes.