0-hero commited on
Commit
7b15b4f
1 Parent(s): 000ffc4

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +90 -0
README.md ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - facebook
7
+ - meta
8
+ - pytorch
9
+ - llama
10
+ - llama-3
11
+ license: other
12
+ license_name: llama3
13
+ license_link: LICENSE
14
+ base_model: meta-llama/Meta-Llama-3-8B
15
+ ---
16
+
17
+ # Meta-Llama-3-8B-GGUF
18
+ - This is GGUF quantized version of [Meta-Llama-3-8B](https://huggingface.co/meta-llama/Meta-Llama-3-8B)
19
+ - Created using latest release of llama.cpp dated 5.5.2024
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.
24
+
25
+ **Model developers** Meta
26
+
27
+ **Variations** Llama 3 comes in two sizes — 8B and 70B parameters — in pre-trained and instruction tuned variants.
28
+
29
+ **Input** Models input text only.
30
+
31
+ **Output** Models generate text and code only.
32
+
33
+ **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.
34
+
35
+
36
+ <table>
37
+ <tr>
38
+ <td>
39
+ </td>
40
+ <td><strong>Training Data</strong>
41
+ </td>
42
+ <td><strong>Params</strong>
43
+ </td>
44
+ <td><strong>Context length</strong>
45
+ </td>
46
+ <td><strong>GQA</strong>
47
+ </td>
48
+ <td><strong>Token count</strong>
49
+ </td>
50
+ <td><strong>Knowledge cutoff</strong>
51
+ </td>
52
+ </tr>
53
+ <tr>
54
+ <td rowspan="2" >Llama 3
55
+ </td>
56
+ <td rowspan="2" >A new mix of publicly available online data.
57
+ </td>
58
+ <td>8B
59
+ </td>
60
+ <td>8k
61
+ </td>
62
+ <td>Yes
63
+ </td>
64
+ <td rowspan="2" >15T+
65
+ </td>
66
+ <td>March, 2023
67
+ </td>
68
+ </tr>
69
+ <tr>
70
+ <td>70B
71
+ </td>
72
+ <td>8k
73
+ </td>
74
+ <td>Yes
75
+ </td>
76
+ <td>December, 2023
77
+ </td>
78
+ </tr>
79
+ </table>
80
+
81
+
82
+ **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.
83
+
84
+ **Model Release Date** April 18, 2024.
85
+
86
+ **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.
87
+
88
+ **License** A custom commercial license is available at: [https://llama.meta.com/llama3/license](https://llama.meta.com/llama3/license)
89
+
90
+ 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).