File tree Expand file tree Collapse file tree 4 files changed +21
-0
lines changed
optimum/exporters/openvino Expand file tree Collapse file tree 4 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ Here is the list of the supported architectures :
1717- Albert
1818- Aquila
1919- Aquila 2
20+ - Arcee
2021- Arctic
2122- Audio Spectrogram Transformer
2223- Baichuan 2
Original file line number Diff line number Diff line change @@ -617,6 +617,21 @@ class ExaoneOpenVINOConfig(LlamaOpenVINOConfig):
617617 pass
618618
619619
620+ @register_in_tasks_manager (
621+ "arcee" ,
622+ * [
623+ "feature-extraction" ,
624+ "feature-extraction-with-past" ,
625+ "text-generation" ,
626+ "text-generation-with-past" ,
627+ "text-classification" ,
628+ ],
629+ library_name = "transformers" ,
630+ )
631+ class ArceeOpenVINOConfig (LlamaOpenVINOConfig ):
632+ MIN_TRANSFORMERS_VERSION = "4.53.0"
633+
634+
620635class QwenDummyPastKeyValuesGenerator (DummyPastKeyValuesGenerator ):
621636 def __init__ (
622637 self ,
Original file line number Diff line number Diff line change @@ -1183,6 +1183,9 @@ class OVModelForCausalLMIntegrationTest(unittest.TestCase):
11831183 if is_transformers_version (">=" , "4.51.3" ):
11841184 SUPPORTED_ARCHITECTURES += ("glm4" ,)
11851185
1186+ if is_transformers_version (">=" , "4.53.0" ):
1187+ SUPPORTED_ARCHITECTURES += ("arcee" ,)
1188+
11861189 if is_transformers_version (">=" , "4.54.0" ):
11871190 SUPPORTED_ARCHITECTURES += ("ernie4_5" ,)
11881191
@@ -1273,6 +1276,7 @@ class OVModelForCausalLMIntegrationTest(unittest.TestCase):
12731276 "qwen3_moe" : 2 ,
12741277 "mamba" : 0 ,
12751278 "falcon-mamba" : 0 ,
1279+ "arcee" : 2 ,
12761280 "ernie4_5" : 2 ,
12771281 }
12781282
Original file line number Diff line number Diff line change 2727 "albert" : "hf-internal-testing/tiny-random-albert" ,
2828 "aquila" : "katuni4ka/tiny-random-aquilachat" ,
2929 "aquila2" : "katuni4ka/tiny-random-aquila2" ,
30+ "arcee" : "onnx-internal-testing/tiny-random-ArceeForCausalLM" ,
3031 "arctic" : "katuni4ka/tiny-random-snowflake" ,
3132 "audio-spectrogram-transformer" : "Ericwang/tiny-random-ast" ,
3233 "bge" : "BAAI/bge-small-en-v1.5" ,
You can’t perform that action at this time.
0 commit comments