Upload 4 files
Browse files- .gitattributes +1 -0
- README.md +39 -3
- config.json +38 -0
- hash_record_sha256.json +4 -0
- llama-031-instruct.gguf +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
llama-031-instruct.gguf filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,3 +1,39 @@
|
|
1 |
-
---
|
2 |
-
license: llama3
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: llama3
|
3 |
+
inference: false
|
4 |
+
base_model: meta-llama/Meta-Llama-3.1-8B-Instruct
|
5 |
+
base_model_relation: quantized
|
6 |
+
tags:
|
7 |
+
- green
|
8 |
+
- p8
|
9 |
+
- llmware-chat
|
10 |
+
- gguf
|
11 |
+
---
|
12 |
+
|
13 |
+
# llama-3.1-instruct-gguf
|
14 |
+
|
15 |
+
**llama-3.1-instruct-gguf** is a GGUF Q4_K_M int4 quantized version of Llama 3.1 Instruct, providing a very fast inference implementation, optimized for AI PCs using Intel GPU, CPU and NPU.
|
16 |
+
|
17 |
+
[**llama-3.1-instruct**](https://huggingface.co/meta-llama/Meta-Llama-3.1-8B-Instruct) is a leading open source general foundation model from Meta.
|
18 |
+
|
19 |
+
|
20 |
+
### Model Description
|
21 |
+
|
22 |
+
- **Developed by:** meta-llama
|
23 |
+
- **Model type:** llama-3.1
|
24 |
+
- **Parameters:** 8 billion
|
25 |
+
- **Model Parent:** meta-llama/Meta-Llama-3.1-8B-Instruct
|
26 |
+
- **Language(s) (NLP):** English
|
27 |
+
- **License:** Llama 3.1 Community License
|
28 |
+
- **Uses:** General chat use cases
|
29 |
+
- **RAG Benchmark Accuracy Score:** NA
|
30 |
+
- **Quantization:** int4
|
31 |
+
|
32 |
+
|
33 |
+
## Model Card Contact
|
34 |
+
|
35 |
+
[llmware on github](https://www.github.com/llmware-ai/llmware)
|
36 |
+
|
37 |
+
[llmware on hf](https://www.huggingface.co/llmware)
|
38 |
+
|
39 |
+
[llmware website](https://www.llmware.ai)
|
config.json
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "meta-llama/Meta-Llama-3.1-8B-Instruct",
|
3 |
+
"architectures": [
|
4 |
+
"LlamaForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_bias": false,
|
7 |
+
"attention_dropout": 0.0,
|
8 |
+
"bos_token_id": 128000,
|
9 |
+
"eos_token_id": [
|
10 |
+
128001,
|
11 |
+
128008,
|
12 |
+
128009
|
13 |
+
],
|
14 |
+
"hidden_act": "silu",
|
15 |
+
"hidden_size": 4096,
|
16 |
+
"initializer_range": 0.02,
|
17 |
+
"intermediate_size": 14336,
|
18 |
+
"max_position_embeddings": 131072,
|
19 |
+
"mlp_bias": false,
|
20 |
+
"model_type": "llama",
|
21 |
+
"num_attention_heads": 32,
|
22 |
+
"num_hidden_layers": 32,
|
23 |
+
"num_key_value_heads": 8,
|
24 |
+
"pretraining_tp": 1,
|
25 |
+
"rms_norm_eps": 1e-05,
|
26 |
+
"rope_scaling": {
|
27 |
+
"factor": 8.0,
|
28 |
+
"high_freq_factor": 4.0,
|
29 |
+
"low_freq_factor": 1.0,
|
30 |
+
"original_max_position_embeddings": 8192,
|
31 |
+
"rope_type": "llama3"
|
32 |
+
},
|
33 |
+
"rope_theta": 500000.0,
|
34 |
+
"tie_word_embeddings": false,
|
35 |
+
"transformers_version": "4.43.4",
|
36 |
+
"use_cache": true,
|
37 |
+
"vocab_size": 128256
|
38 |
+
}
|
hash_record_sha256.json
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"llama-031-instruct.gguf": "8c5ebecf979c2df4732f7ccfd822c99c76a1b1efd0c13b9161254c549c9a50c7",
|
3 |
+
"time_stamp": "2025-02-10_104944"
|
4 |
+
}
|
llama-031-instruct.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8c5ebecf979c2df4732f7ccfd822c99c76a1b1efd0c13b9161254c549c9a50c7
|
3 |
+
size 4920738112
|