Skip to content

Commit

Permalink
Update readme and change rev to fix zip version
Browse files Browse the repository at this point in the history
  • Loading branch information
laggui committed May 29, 2024
1 parent 553f3dd commit 46f91ee
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
6 changes: 3 additions & 3 deletions llama-burn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ wgpu = ["burn/wgpu"]

[dependencies]
# Note: default-features = false is needed to disable std
burn = { git = "https://github.com/tracel-ai/burn", rev = "e4836241e1e5d7391aa278f32a8fffeb1cdbe12a", default-features = false }
burn-import = { git = "https://github.com/tracel-ai/burn", rev = "e4836241e1e5d7391aa278f32a8fffeb1cdbe12a" }
burn = { git = "https://github.com/tracel-ai/burn", rev = "0d4374cfd4af073d5e1185cfc982b53c2bf92802", default-features = false }
burn-import = { git = "https://github.com/tracel-ai/burn", rev = "0d4374cfd4af073d5e1185cfc982b53c2bf92802" }
itertools = { version = "0.12.1", default-features = false, features = [
"use_alloc",
] }
Expand All @@ -44,5 +44,5 @@ rand = { version = "0.8.5", default-features = false, features = [
] } # std_rng is for no_std

[dev-dependencies]
burn = { git = "https://github.com/tracel-ai/burn", rev = "e4836241e1e5d7391aa278f32a8fffeb1cdbe12a" }
burn = { git = "https://github.com/tracel-ai/burn", rev = "0d4374cfd4af073d5e1185cfc982b53c2bf92802" }
clap = { version = "4.5.4", features = ["derive"] }
11 changes: 9 additions & 2 deletions llama-burn/NOTICES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# NOTICES AND INFORMATION

This file contains notices and information required by libraries that this repository copied or derived from. The use of the following resources complies with the licenses provided.
This file contains notices and information required by libraries that this repository copied or
derived from. The use of the following resources complies with the licenses provided.

## Implementation

The model implementation was adapted from the original [Llama-3 implementation](https://github.com/meta-llama/llama3), which is distributed under the [Meta Llama 3 Community License Agreement](https://github.com/meta-llama/llama3/blob/main/LICENSE).
The model implementation was adapted from the original
[Llama 3 implementation](https://github.com/meta-llama/llama3), which is distributed under the
[Meta Llama 3 Community License Agreement](https://github.com/meta-llama/llama3/blob/main/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
the [Apache 2.0](https://github.com/jzhang38/TinyLlama/blob/main/LICENSE) open source license.
2 changes: 1 addition & 1 deletion llama-burn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

The popular Llama LLM is here!

This repository contains the [Llama-3](https://github.com/meta-llama/llama3) and
This repository contains the [Llama 3](https://github.com/meta-llama/llama3) 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

0 comments on commit 46f91ee

Please sign in to comment.