munish0838 commited on
Commit
eef26f5
1 Parent(s): 431a0f7

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