Tilelli-llm / src /tilelli /baselines /__init__.py
TilelliLab's picture
Mirror small files (code, paper, results)
f86dc09 verified
Raw
History Blame Contribute Delete
402 Bytes
"""Param-matched baselines for Tilelli comparison runs.
Lives outside ``tilelli.core`` because these are *not* part of the Tilelli
architecture — they exist solely so the public "beat vanilla" comparison
is reproducible from the same repo, with the same tokenizer, data loader,
and trainer.
"""
from tilelli.baselines.vanilla import VanillaLM, VanillaBlock
__all__ = ["VanillaLM", "VanillaBlock"]