-
Notifications
You must be signed in to change notification settings - Fork 0
Home
github-actions[bot] edited this page Mar 7, 2026
·
8 revisions
Operational docs for the llm repository, focused on reproducible data prep, tokenizer/sharding pipelines, and GPU training.
- Decoder-only LLM project built from scratch.
- Emphasis on engineering reliability: CI gate, integrity checks, and versioned data flows.
- Hot/warm storage model for large corpora (
./data+/mnt/ceph/llm/data).
- Builds a decoder-only LLM stack from scratch.
- Focuses on reproducible data prep, tokenization, sharding, training, and evaluation.
- Uses Sebastian Raschka's materials as implementation references.
- Setup and Tooling
- Data Pipeline and Versioning
- Development Workflow
- Architecture and Roadmap
- Release and Deployment
- References
- ZIM extraction pipeline implemented.
- Tokenizer training pipeline implemented.
- Corpus sharding pipeline implemented.
- Shared tokenizer + batch sharding workflow implemented.
- Baseline GPT training + checkpoint/resume implemented.
- Hot-local processing + warm-storage cache workflow implemented.
- CI/CD workflows implemented for checks and wiki publishing.
make setup-dev
make test
make lint
make typecheck
make trainFor server-specific setup and storage guidance, see Setup and Tooling and Data Pipeline and Versioning.