munish0838 commited on
Commit
69d7b06
1 Parent(s): 8674569

Create README.md

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