mirror of
https://github.com/saymrwulf/transformers.git
synced 2026-05-14 20:58:08 +00: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
6 lines
207 B
Python
6 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
|