Ilama-3.2-1B / modeling_ilama.py
hmellor's picture
hmellor HF Staff
Upload IlamaForCausalLM
923c85f verified
raw
history blame contribute delete
234 Bytes
from transformers import LlamaModel, LlamaForCausalLM
from .configuration_ilama import IlamaConfig
class IlamaModel(LlamaModel):
config_class = IlamaConfig
class IlamaForCausalLM(LlamaForCausalLM):
config_class = IlamaConfig