mirror of
https://github.com/huggingface/transformers.git
synced 2025-07-03 12:50:06 +06:00

* update modular and add examples * style * improve example comments * style * fix small logic issue for imports * fix relative order issue when files do not make sense * Improve comments * trigger CIs
7 lines
207 B
Python
7 lines
207 B
Python
from transformers.models.llama.modeling_llama import LlamaModel
|
|
|
|
|
|
# Check that we can correctly change the prefix (here add Text part at the end of the name)
|
|
class Multimodal1TextModel(LlamaModel):
|
|
pass
|