LLM-GO / src /llm_go /model /__init__.py
LesterCerioli's picture
Building first version from Golang LLM
a58ece3
Raw
History Blame Contribute Delete
251 Bytes
"""Transformer model components."""
from llm_go.model.attention import MultiHeadAttention, RotaryEmbedding
from llm_go.model.transformer import GoLLM, TransformerBlock
__all__ = ["GoLLM", "TransformerBlock", "MultiHeadAttention", "RotaryEmbedding"]