├── .gitignore ├── LICENSE.txt ├── README.md ├── Slides.pdf ├── download.sh ├── inference.py ├── model.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkproj/pytorch-llama/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkproj/pytorch-llama/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # pytorch-llama 2 | LLaMA 2 implemented from scratch in PyTorch 3 | -------------------------------------------------------------------------------- /Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkproj/pytorch-llama/HEAD/Slides.pdf -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkproj/pytorch-llama/HEAD/download.sh -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkproj/pytorch-llama/HEAD/inference.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkproj/pytorch-llama/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch 2 | sentencepiece 3 | tqdm --------------------------------------------------------------------------------