Skip to content

Commit 689c7f2

Browse files
authored
Update README.md
Modified from Llama Recipes to Llama Cookbook.
1 parent 8fac8be commit 689c7f2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Thank you for developing with Llama models. As part of the Llama 3.1 release, we
55
- [PurpleLlama](https://github.com/meta-llama/PurpleLlama) - Key component of Llama Stack focusing on safety risks and inference time mitigations
66
- [llama-toolchain](https://github.com/meta-llama/llama-toolchain) - Model development (inference/fine-tuning/safety shields/synthetic data generation) interfaces and canonical implementations
77
- [llama-agentic-system](https://github.com/meta-llama/llama-agentic-system) - E2E standalone Llama Stack system, along with opinionated underlying interface, that enables creation of agentic applications
8-
- [llama-recipes](https://github.com/meta-llama/llama-recipes) - Community driven scripts and integrations
8+
- [llama-cookbook](https://github.com/meta-llama/llama-recipes) - Community driven scripts and integrations
99

1010
If you have any questions, please feel free to file an issue on any of the above repos and we will do our best to respond in a timely manner.
1111

@@ -18,7 +18,7 @@ We are unlocking the power of large language models. Llama 2 is now accessible t
1818

1919
This release includes model weights and starting code for pre-trained and fine-tuned Llama language models — ranging from 7B to 70B parameters.
2020

21-
This repository is intended as a minimal example to load [Llama 2](https://ai.meta.com/research/publications/llama-2-open-foundation-and-fine-tuned-chat-models/) models and run inference. For more detailed examples leveraging Hugging Face, see [llama-recipes](https://github.com/facebookresearch/llama-recipes/).
21+
This repository is intended as a minimal example to load [Llama 2](https://ai.meta.com/research/publications/llama-2-open-foundation-and-fine-tuned-chat-models/) models and run inference. For more detailed examples leveraging Hugging Face, see [llama-cookbook](https://github.com/facebookresearch/llama-recipes/).
2222

2323
## Updates post-launch
2424

@@ -40,7 +40,7 @@ We are also providing downloads on [Hugging Face](https://huggingface.co/meta-ll
4040

4141
## Quick Start
4242

43-
You can follow the steps below to quickly get up and running with Llama 2 models. These steps will let you run quick inference locally. For more examples, see the [Llama 2 recipes repository](https://github.com/facebookresearch/llama-recipes).
43+
You can follow the steps below to quickly get up and running with Llama 2 models. These steps will let you run quick inference locally. For more examples, see the [Llama 2 cookbook repository](https://github.com/facebookresearch/llama-recipes).
4444

4545
1. In a conda env with PyTorch / CUDA available clone and download this repository.
4646

@@ -100,7 +100,7 @@ torchrun --nproc_per_node 1 example_text_completion.py \
100100
The fine-tuned models were trained for dialogue applications. To get the expected features and performance for them, a specific formatting defined in [`chat_completion`](https://github.com/facebookresearch/llama/blob/main/llama/generation.py#L212)
101101
needs to be followed, including the `INST` and `<<SYS>>` tags, `BOS` and `EOS` tokens, and the whitespaces and breaklines in between (we recommend calling `strip()` on inputs to avoid double-spaces).
102102
103-
You can also deploy additional classifiers for filtering out inputs and outputs that are deemed unsafe. See the llama-recipes repo for [an example](https://github.com/facebookresearch/llama-recipes/blob/main/examples/inference.py) of how to add a safety checker to the inputs and outputs of your inference code.
103+
You can also deploy additional classifiers for filtering out inputs and outputs that are deemed unsafe. See the llama-cookbook repo for [an example](https://github.com/facebookresearch/llama-recipes/blob/main/examples/inference.py) of how to add a safety checker to the inputs and outputs of your inference code.
104104
105105
Examples using llama-2-7b-chat:
106106

0 commit comments

Comments
 (0)