diff options
author | S. Solomon Darnell | 2025-03-28 21:52:21 -0500 |
---|---|---|
committer | S. Solomon Darnell | 2025-03-28 21:52:21 -0500 |
commit | 4a52a71956a8d46fcb7294ac71734504bb09bcc2 (patch) | |
tree | ee3dc5af3b6313e921cd920906356f5d4febc4ed /.venv/lib/python3.12/site-packages/azure/ai/ml/_internal/_schema/command.py | |
parent | cc961e04ba734dd72309fb548a2f97d67d578813 (diff) | |
download | gn-ai-master.tar.gz |
Diffstat (limited to '.venv/lib/python3.12/site-packages/azure/ai/ml/_internal/_schema/command.py')
-rw-r--r-- | .venv/lib/python3.12/site-packages/azure/ai/ml/_internal/_schema/command.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/azure/ai/ml/_internal/_schema/command.py b/.venv/lib/python3.12/site-packages/azure/ai/ml/_internal/_schema/command.py new file mode 100644 index 00000000..2dddf02b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/azure/ai/ml/_internal/_schema/command.py @@ -0,0 +1,37 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- +from marshmallow import fields + +from ..._schema import NestedField +from ..._schema.core.fields import DumpableEnumField, EnvironmentField +from ..._schema.job import ParameterizedCommandSchema, ParameterizedParallelSchema +from ..._schema.job.job_limits import CommandJobLimitsSchema +from .._schema.node import InternalBaseNodeSchema, NodeType + + +class CommandSchema(InternalBaseNodeSchema, ParameterizedCommandSchema): + class Meta: + exclude = ["code", "distribution"] # internal command doesn't have code & distribution + + environment = EnvironmentField() + type = DumpableEnumField(allowed_values=[NodeType.COMMAND]) + limits = NestedField(CommandJobLimitsSchema) + + +class DistributedSchema(CommandSchema): + class Meta: + exclude = ["code"] # need to enable distribution comparing to CommandSchema + + type = DumpableEnumField(allowed_values=[NodeType.DISTRIBUTED]) + + +class ParallelSchema(InternalBaseNodeSchema, ParameterizedParallelSchema): + class Meta: + # partition_keys can still be used with unknown warning, but need to do dump before setting + exclude = ["task", "input_data", "mini_batch_error_threshold", "partition_keys"] + + type = DumpableEnumField(allowed_values=[NodeType.PARALLEL]) + compute = fields.Str() + environment = fields.Str() + limits = NestedField(CommandJobLimitsSchema) |