Skip to content

Commit

Permalink
Update readme and notices
Browse files Browse the repository at this point in the history
  • Loading branch information
laggui committed Jan 23, 2025
1 parent f7e1003 commit e760b3c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions llama-burn/NOTICES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ The model implementation was adapted from the original
[Meta Llama 3 Community License Agreement](https://github.com/meta-llama/llama3/blob/main/LICENSE).
The Llama 3.1 model is distributed under the
[Llama 3.1 Community License Agreement](https://github.com/meta-llama/llama-models/blob/main/models/llama3_1/LICENSE).
The Llama 3.2 model is distributed under the
[Llama 3.2 Community License Agreement](https://github.com/meta-llama/llama-models/blob/main/models/llama3_2/LICENSE).

The TinyLlama implementation is derived from the same code, but its weights and tokenizers were
adapted from the [original implementation](https://github.com/jzhang38/TinyLlama) distributed under
Expand Down
10 changes: 6 additions & 4 deletions llama-burn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

The popular Llama LLM is here!

This repository contains the [Llama 3.1](https://github.com/meta-llama/llama-models/),
[Llama 3](https://github.com/meta-llama/llama3) and
This repository contains the
[Llama 3.2, Llama 3.1, Llama 3](https://github.com/meta-llama/llama-models/), and
[TinyLlama](https://github.com/jzhang38/TinyLlama) implementations with their corresponding
tokenizers. You can find the [Burn](https://github.com/tracel-ai/burn) implementation for the Llama
variants in [src/llama.rs](src/llama.rs).
Expand Down Expand Up @@ -89,8 +89,10 @@ cargo run --release --features llama3,cuda --example chat
```

**Built with Meta Llama 3.** This example uses the
[Meta-Llama-3.1-8B-Instruct](https://huggingface.co/meta-llama/Meta-Llama-3.1-8B-Instruct) (default)
and [Meta-Llama-3-8B-Instruct](https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct)
[Meta-Llama-3.2-1B-Instruct](https://huggingface.co/meta-llama/Llama-3.2-1B-Instruct) (default),
[Meta-Llama-3.2-3B-Instruct](https://huggingface.co/meta-llama/Llama-3.2-3B-Instruct),
[Meta-Llama-3.1-8B-Instruct](https://huggingface.co/meta-llama/Meta-Llama-3.1-8B-Instruct) and
[Meta-Llama-3-8B-Instruct](https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct)
instruction-tuned models. Note that the [base pre-trained Llama-3 model](./src/pretrained.rs#L77) is
also available if you wish to use it in your application.

Expand Down

0 comments on commit e760b3c

Please sign in to comment.