munish0838 commited on
Commit
94f17b2
1 Parent(s): cd36eb3

Create README.md

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