mukel commited on
Commit
3778493
1 Parent(s): 2c50929

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -1
README.md CHANGED
@@ -18,6 +18,78 @@ A pure `Q4_0` quantization can be generated from a high precision (F32, F16, BFL
18
  ./quantize --pure ./Meta-Llama-3-8B-Instruct-F32.gguf ./Meta-Llama-3-8B-Instruct-Q4_0.gguf Q4_0
19
  ```
20
 
 
 
 
 
 
21
  ## Model Details
22
 
23
- Meta developed and released the Meta Llama 3 family of large language models (LLMs), a collection of pretrained and instruction tuned generative text models in 8 and 70B sizes. The Llama 3 instruction tuned models are optimized for dialogue use cases and outperform many of the available open source chat models on common industry benchmarks. Further, in developing these models, we took great care to optimize helpfulness and safety.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  ./quantize --pure ./Meta-Llama-3-8B-Instruct-F32.gguf ./Meta-Llama-3-8B-Instruct-Q4_0.gguf Q4_0
19
  ```
20
 
21
+ # Meta-Llama-3-8B-Instruct-GGUF
22
+
23
+ - This is GGUF quantized version of [meta-llama/Meta-Llama-3-8B-Instruct](https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct) created using llama.cpp
24
+ - **Re-uploaded with new end token**
25
+
26
  ## Model Details
27
 
28
+ Meta developed and released the Meta Llama 3 family of large language models (LLMs), a collection of pretrained and instruction tuned generative text models in 8 and 70B sizes. The Llama 3 instruction tuned models are optimized for dialogue use cases and outperform many of the available open source chat models on common industry benchmarks. Further, in developing these models, we took great care to optimize helpfulness and safety.
29
+
30
+ **Model developers** Meta
31
+
32
+ **Variations** Llama 3 comes in two sizes — 8B and 70B parameters — in pre-trained and instruction tuned variants.
33
+
34
+ **Input** Models input text only.
35
+
36
+ **Output** Models generate text and code only.
37
+
38
+ **Model Architecture** Llama 3 is an auto-regressive language model that uses an optimized transformer architecture. The tuned versions use supervised fine-tuning (SFT) and reinforcement learning with human feedback (RLHF) to align with human preferences for helpfulness and safety.
39
+
40
+
41
+ <table>
42
+ <tr>
43
+ <td>
44
+ </td>
45
+ <td><strong>Training Data</strong>
46
+ </td>
47
+ <td><strong>Params</strong>
48
+ </td>
49
+ <td><strong>Context length</strong>
50
+ </td>
51
+ <td><strong>GQA</strong>
52
+ </td>
53
+ <td><strong>Token count</strong>
54
+ </td>
55
+ <td><strong>Knowledge cutoff</strong>
56
+ </td>
57
+ </tr>
58
+ <tr>
59
+ <td rowspan="2" >Llama 3
60
+ </td>
61
+ <td rowspan="2" >A new mix of publicly available online data.
62
+ </td>
63
+ <td>8B
64
+ </td>
65
+ <td>8k
66
+ </td>
67
+ <td>Yes
68
+ </td>
69
+ <td rowspan="2" >15T+
70
+ </td>
71
+ <td>March, 2023
72
+ </td>
73
+ </tr>
74
+ <tr>
75
+ <td>70B
76
+ </td>
77
+ <td>8k
78
+ </td>
79
+ <td>Yes
80
+ </td>
81
+ <td>December, 2023
82
+ </td>
83
+ </tr>
84
+ </table>
85
+
86
+
87
+ **Llama 3 family of models**. Token counts refer to pretraining data only. Both the 8 and 70B versions use Grouped-Query Attention (GQA) for improved inference scalability.
88
+
89
+ **Model Release Date** April 18, 2024.
90
+
91
+ **Status** This is a static model trained on an offline dataset. Future versions of the tuned models will be released as we improve model safety with community feedback.
92
+
93
+ **License** A custom commercial license is available at: [https://llama.meta.com/llama3/license](https://llama.meta.com/llama3/license)
94
+
95
+ Where to send questions or comments about the model Instructions on how to provide feedback or comments on the model can be found in the model [README](https://github.com/meta-llama/llama3). For more technical information about generation parameters and recipes for how to use Llama 3 in applications, please go [here](https://github.com/meta-llama/llama-recipes).