Skip to content

Commit 92f0b60

Browse files
committed
Exrends list of supported model types for the MMD
1 parent e224945 commit 92f0b60

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

ads/aqua/model/enums.py

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,24 @@ class FineTuningCustomMetadata(ExtendedEnum):
2727

2828
class MultiModelSupportedTaskType(ExtendedEnum):
2929
TEXT_GENERATION = "text_generation"
30+
TEXT_GENERATION_INFERENCE = "text_generation_inference"
31+
TEXT2TEXT_GENERATION = "text2text_generation"
32+
SUMMARIZATION = "summarization"
33+
TRANSLATION = "translation"
34+
CONVERSATIONAL = "conversational"
35+
FEATURE_EXTRACTION = "feature_extraction"
36+
SENTENCE_SIMILARITY = "sentence_similarity"
37+
AUTOMATIC_SPEECH_RECOGNITION = "automatic_speech_recognition"
38+
TEXT_TO_SPEECH = "text_to_speech"
39+
TEXT_TO_IMAGE = "text_to_image"
40+
TEXT_EMBEDDING = "text_embedding"
3041
IMAGE_TEXT_TO_TEXT = "image_text_to_text"
3142
CODE_SYNTHESIS = "code_synthesis"
32-
EMBEDDING = "text_embedding"
43+
QUESTION_ANSWERING = "question_answering"
44+
AUDIO_CLASSIFICATION = "audio_classification"
45+
AUDIO_TO_AUDIO = "audio_to_audio"
46+
IMAGE_CLASSIFICATION = "image_classification"
47+
IMAGE_TO_TEXT = "image_to_text"
48+
IMAGE_TO_IMAGE = "image_to_image"
49+
VIDEO_CLASSIFICATION = "video_classification"
50+
TIME_SERIES_FORECASTING = "time_series_forecasting"

0 commit comments

Comments
 (0)