File size: 402 Bytes
f86dc09 | 1 2 3 4 5 6 7 8 9 10 11 12 | """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"]
|