From 0634c435630d7a2722c7d0bca7ec5b86918e6173 Mon Sep 17 00:00:00 2001 From: Suraj Subramanian <suraj813@gmail.com> Date: Tue, 4 Jun 2024 19:52:45 +0000 Subject: [PATCH] Update links --- recipes/code_llama/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/code_llama/README.md b/recipes/code_llama/README.md index d5f4bda5..ef1be5e8 100644 --- a/recipes/code_llama/README.md +++ b/recipes/code_llama/README.md @@ -4,7 +4,7 @@ Code llama was recently released with three flavors, base-model that support mul Find the scripts to run Code Llama, where there are two examples of running code completion and infilling. -**Note** Please find the right model on HF side [here](https://huggingface.co/codellama). +**Note** Please find the right model on HF [here](https://huggingface.co/models?search=meta-llama%20codellama). Make sure to install Transformers from source for now @@ -36,4 +36,4 @@ To run the 70B Instruct model example run the following (you'll need to enter th python code_instruct_example.py --model_name codellama/CodeLlama-70b-Instruct-hf --temperature 0.2 --top_p 0.9 ``` -You can learn more about the chat prompt template [on HF](https://huggingface.co/codellama/CodeLlama-70b-Instruct-hf#chat-prompt) and [original Code Llama repository](https://github.com/facebookresearch/codellama/blob/main/README.md#fine-tuned-instruction-models). HF tokenizer has already taken care of the chat template as shown in this example. +You can learn more about the chat prompt template [on HF](https://huggingface.co/meta-llama/CodeLlama-70b-Instruct-hf#chat-prompt) and [original Code Llama repository](https://github.com/meta-llama/codellama/blob/main/README.md#fine-tuned-instruction-models). HF tokenizer has already taken care of the chat template as shown in this example. -- GitLab