次の方法で共有


CommandJobLimits クラス

コマンド ジョブの制限。

継承
azure.ai.ml.entities._job.job_limits.JobLimits
CommandJobLimits

コンストラクター

CommandJobLimits(*, timeout: int | str | None = None)

キーワードのみのパラメーター

名前 説明
timeout

ジョブが取り消されるまでの最大実行時間 (秒単位)。

CommandJobLimits を使用した CommandJob の構成。


   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),
   )