You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ The 'llama-recipes' repository is a companion to the [Meta Llama 2](https://gith
10
10
> `<\|eot_id\|>` | This signifies the end of the message in a turn. |
11
11
> `<\|start_header_id\|>{role}<\|end_header_id\|>` | These tokens enclose the role for a particular message. The possible roles can be: system, user, assistant. |
12
12
> `<\|end_of_text\|>` | This is equivalent to the EOS token. On generating this token, Llama 3 will cease to generate more tokens |
13
-
>
13
+
>
14
14
> A multiturn-conversation with Llama 3 follows this prompt template:
@@ -26,7 +26,7 @@ The 'llama-recipes' repository is a companion to the [Meta Llama 2](https://gith
26
26
> More details on the new tokenizer and prompt template: <PLACEHOLDER_URL>
27
27
> [!NOTE]
28
28
> The llama-recipes repository was recently refactored to promote a better developer experience of using the examples. Some files have been moved to new locations. The `src/` folder has NOT been modified, so the functionality of this repo and package is not impacted.
29
-
>
29
+
>
30
30
> Make sure you update your local clone by running `git pull origin main`
31
31
32
32
## Table of Contents
@@ -55,29 +55,29 @@ These instructions will get you a copy of the project up and running on your loc
55
55
### Prerequisites
56
56
57
57
#### PyTorch Nightlies
58
-
Some features (especially fine-tuning with FSDP + PEFT) currently require PyTorch nightlies to be installed. Please make sure to install the nightlies if you're using these features following [this guide](https://pytorch.org/get-started/locally/).
58
+
I you want to use PyTorch nightlies instead of the stable release, go to [this guide](https://pytorch.org/get-started/locally/) to retrieve the right `--extra-index-url URL` parameter for the `pip install` commands on your platform.
59
59
60
60
### Installing
61
61
Llama-recipes provides a pip distribution for easy install and usage in other projects. Alternatively, it can be installed from source.
0 commit comments