diff options
Diffstat (limited to '.venv/lib/python3.12/site-packages/azure/ai/ml/constants/_finetuning.py')
-rw-r--r-- | .venv/lib/python3.12/site-packages/azure/ai/ml/constants/_finetuning.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/azure/ai/ml/constants/_finetuning.py b/.venv/lib/python3.12/site-packages/azure/ai/ml/constants/_finetuning.py new file mode 100644 index 00000000..2aecab91 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/azure/ai/ml/constants/_finetuning.py @@ -0,0 +1,17 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- + + +class FineTuningTaskType: + CHAT_COMPLETION = "ChatCompletion" + TEXT_COMPLETION = "TextCompletion" + TEXT_CLASSIFICATION = "TextClassification" + QUESTION_ANSWERING = "QuestionAnswering" + TEXT_SUMMARIZATION = "TextSummarization" + TOKEN_CLASSIFICATION = "TokenClassification" + TEXT_TRANSLATION = "TextTranslation" + IMAGE_CLASSIFICATION = "ImageClassification" + IMAGE_INSTANCE_SEGMENTATION = "ImageInstanceSegmentation" + IMAGE_OBJECT_DETECTION = "ImageObjectDetection" + VIDEO_MULTI_OBJECT_TRACKING = "VideoMultiObjectTracking" |