File size: 606 Bytes
c10461c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
"""
SLLama: Small and Efficient LLaMA variant.
This package implements configuration, pretrained model utilities, and
modeling code for the SLLama family of models. It is fully compatible
with Hugging Face Transformers' Auto classes.
"""
from .configuration_sllama import SLLamaConfig
from .modeling_sllama_pretrained import SLLamaPreTrainedModel
from .modeling_sllama import (
SLLamaModel,
SLLamaForCausalLM,
SLLamaForSequenceClassification,
)
__all__ = [
"SLLamaConfig",
"SLLamaPreTrainedModel",
"SLLamaModel",
"SLLamaForCausalLM",
"SLLamaForSequenceClassification",
]
|