gitextract_67kobddf/ ├── .gitignore ├── EVAL.md ├── LICENSE ├── PRETRAIN.md ├── README.md ├── README_zh-CN.md ├── chat_gradio/ │ ├── README.md │ ├── app.py │ └── requirements.txt ├── lit_gpt/ │ ├── __init__.py │ ├── adapter.py │ ├── adapter_v2.py │ ├── config.py │ ├── fused_cross_entropy.py │ ├── fused_rotary_embedding.py │ ├── lora.py │ ├── model.py │ ├── packed_dataset.py │ ├── rmsnorm.py │ ├── speed_monitor.py │ ├── tokenizer.py │ └── utils.py ├── pretrain/ │ ├── tinyllama.py │ └── tinyllama_code.py ├── requirements.txt ├── script.sh ├── scripts/ │ ├── convert_hf_checkpoint.py │ ├── convert_lit_checkpoint.py │ ├── prepare_redpajama.py │ ├── prepare_slimpajama.py │ └── prepare_starcoder.py ├── sft/ │ ├── finetune.py │ ├── script.sh │ ├── simple_inference.py │ └── simple_inference2.py └── speculative_decoding/ ├── README.md └── instruct_hf_assisted_decoding.py