CommandJobLimits Class
Limits for Command Jobs.
- Inheritance
-
azure.ai.ml.entities._job.job_limits.JobLimitsCommandJobLimits
Constructor
CommandJobLimits(*, timeout: int | str | None = None)
Keyword-Only Parameters
Name | Description |
---|---|
timeout
|
The maximum run duration, in seconds, after which the job will be cancelled. |
Examples
Configuring a CommandJob with CommandJobLimits.
command_job = CommandJob(
code="./src",
command="python train.py --ss {search_space.ss}",
inputs={"input1": Input(path="trial.csv")},
outputs={"default": Output(path="./foo")},
compute="trial",
environment="AzureML-sklearn-1.0-ubuntu20.04-py38-cpu:33",
limits=CommandJobLimits(timeout=120),
)
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for Python