Upload 2 files
Browse files- README.md +39 -3
- config.json +39 -0
README.md
CHANGED
@@ -1,3 +1,39 @@
|
|
1 |
-
---
|
2 |
-
license: llama3.2
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: llama3.2
|
3 |
+
inference: false
|
4 |
+
tags:
|
5 |
+
- green
|
6 |
+
- p1
|
7 |
+
- llmware-chat
|
8 |
+
- ov
|
9 |
+
- emerald
|
10 |
+
---
|
11 |
+
|
12 |
+
# llama-3.2-1b-instruct-onnx
|
13 |
+
|
14 |
+
**llama-3.2-1b-instruct-onnx** is an ONNX int4 quantized version of Llama 3.2 1B Instruct, providing a very small, very fast inference implementation, optimized for AI PCs using Intel GPU, CPU and NPU.
|
15 |
+
|
16 |
+
[**llama-3.2-1b-instruct**](https://huggingface.co/meta-llama/Llama-3.2-1B-Instruct) is a new 1B chat foundation model from Meta.
|
17 |
+
|
18 |
+
|
19 |
+
### Model Description
|
20 |
+
|
21 |
+
- **Developed by:** meta-llama
|
22 |
+
- **Quantized by:** llmware
|
23 |
+
- **Model type:** llama-3.2
|
24 |
+
- **Parameters:** 1 billion
|
25 |
+
- **Model Parent:** meta-llama/Meta-Llama-3.2-1B-Instruct
|
26 |
+
- **Language(s) (NLP):** English
|
27 |
+
- **License:** Llama 3.2 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,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "meta-llama/Llama-3.2-1B-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 |
+
"head_dim": 64,
|
15 |
+
"hidden_act": "silu",
|
16 |
+
"hidden_size": 2048,
|
17 |
+
"initializer_range": 0.02,
|
18 |
+
"intermediate_size": 8192,
|
19 |
+
"max_position_embeddings": 131072,
|
20 |
+
"mlp_bias": false,
|
21 |
+
"model_type": "llama",
|
22 |
+
"num_attention_heads": 32,
|
23 |
+
"num_hidden_layers": 16,
|
24 |
+
"num_key_value_heads": 8,
|
25 |
+
"pretraining_tp": 1,
|
26 |
+
"rms_norm_eps": 1e-05,
|
27 |
+
"rope_scaling": {
|
28 |
+
"factor": 32.0,
|
29 |
+
"high_freq_factor": 4.0,
|
30 |
+
"low_freq_factor": 1.0,
|
31 |
+
"original_max_position_embeddings": 8192,
|
32 |
+
"rope_type": "llama3"
|
33 |
+
},
|
34 |
+
"rope_theta": 500000.0,
|
35 |
+
"tie_word_embeddings": true,
|
36 |
+
"transformers_version": "4.45.2",
|
37 |
+
"use_cache": true,
|
38 |
+
"vocab_size": 128256
|
39 |
+
}
|