Text Generation
Safetensors
English
sllama
conversational
sllama / src /__init__.py
vomolaoye's picture
Initial clean commit with model + tokenizer
e7bbf59
"""
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",
]