Skip to content

Commit

Permalink
add new model.
Browse files Browse the repository at this point in the history
  • Loading branch information
b4rtaz committed May 25, 2024
1 parent bf97faa commit 4575818
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Tensor parallelism is all you need. Run LLMs on weak devices or make powerful de
Python and GCC required. Download this repository and run:

* Llama 3 8B: `python download-model.py llama3`
* Llama 3 8B Instruct: `python download-model.py llama3_instruct`
* TinyLlama: `python download-model.py tinylama`

**Supported modes:**
Expand Down
6 changes: 6 additions & 0 deletions download-model.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
'https://huggingface.co/b4rtaz/llama-3-8b-distributed-llama/resolve/main/dllama_meta-llama-3-8b_q40.bin?download=true',
'https://huggingface.co/b4rtaz/llama-3-8b-distributed-llama/resolve/main/dllama_meta-llama3-tokenizer.t?download=true',
],
'llama3_8b_instruct_q40': [
'https://huggingface.co/Azamorn/Meta-Llama-3-8B-Instruct-Distributed/resolve/main/dllama_original_q40.bin?download=true',
'https://huggingface.co/Azamorn/Meta-Llama-3-8B-Instruct-Distributed/resolve/main/dllama-llama3-tokenizer.t?download=true',
],
'tinylama_1.1b_3t_q40': [
'https://huggingface.co/b4rtaz/tinyllama-1.1b-1431k-3t-distributed-llama/resolve/main/dllama_model_tinylama_1.1b_3t_q40.m?download=true',
'https://huggingface.co/b4rtaz/tinyllama-1.1b-1431k-3t-distributed-llama/resolve/main/dllama_tokenizer_tinylama_1.1b_3t_q40.t?download=true'
Expand All @@ -16,6 +20,8 @@
ALIASES = {
'llama3': 'llama3_8b_q40',
'llama3_8b': 'llama3_8b_q40',
'llama3_instruct': 'llama3_8b_instruct_q40',
'llama3_8b_instruct': 'llama3_8b_instruct_q40',
'tinylama': 'tinylama_1.1b_3t_q40'
}

Expand Down

0 comments on commit 4575818

Please sign in to comment.