9 lines
207 B
Python
9 lines
207 B
Python
from transformers import LlamaConfig
|
|
|
|
class IlamaConfig(LlamaConfig):
|
|
model_type = "ilama"
|
|
decoder = None
|
|
generator = None
|
|
text_config = None
|
|
text_encoder = None
|
|
thinker_config = None |