From 85edd12c2d7ba937352b6b4825b31b233a87abb3 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Wed, 19 Jun 2024 13:20:34 +0000 Subject: [PATCH] refactor: Update Dockerfile.tpl to use huggingface/transformers-pytorch-gpu image --- Llama/Models/README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/Llama/Models/README.md b/Llama/Models/README.md index e69de29bb2..37a9c54423 100644 --- a/Llama/Models/README.md +++ b/Llama/Models/README.md @@ -0,0 +1,24 @@ +Keep all llama models here for docker build. + +# Downloading Model from Hugging Face + +Please make sure you have git lfs installed before cloning the model. + +```bash +git lfs install +``` + +```bash +# Here we are downloading the Meta-Llama-3-8B-Instruct model +git clone https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct +``` + +# Larger Models + +For larger models, please use the following command to download the model. + +```bash +# Here we are downloading the Meta-Llama-3-8B-Instruct model +git clone https://huggingface.co/meta-llama/Meta-Llama-3-70B-Instruct +``` +