mirror of
https://github.com/huggingface/transformers.git
synced 2025-10-21 01:23:56 +08:00
* Add FA to docker * Use caching mechanism for qwen2_5 * Fix a typo in important models list * Partial fixes for gemma3 * Added a commit ID for FA repo * Detailled the expectation storage format * Rebase fix * Apply style fixes --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
30 lines
448 B
Python
30 lines
448 B
Python
# List here the models to always test.
|
|
IMPORTANT_MODELS = [
|
|
"auto",
|
|
"bert",
|
|
"gpt2",
|
|
"t5",
|
|
"modernbert",
|
|
"vit",
|
|
"clip",
|
|
"detr",
|
|
"table_transformer",
|
|
"got_ocr2",
|
|
"whisper",
|
|
"wav2vec2",
|
|
"qwen2_audio",
|
|
"speech_t5",
|
|
"csm",
|
|
"llama",
|
|
"gemma3",
|
|
"qwen2",
|
|
"mistral3",
|
|
"qwen2_5_vl",
|
|
"llava",
|
|
"smolvlm",
|
|
"internvl",
|
|
"gemma3n",
|
|
"gpt_oss",
|
|
"qwen2_5_omni",
|
|
]
|