prince-canuma
commited on
Commit
•
abfc083
1
Parent(s):
292c854
Upload folder using huggingface_hub (#1)
Browse files- 1f1fd69787298ce30532c0243c0bb458797c7bb3b5d48845ed748da9a0471865 (4ffd6b16ddc1d0b3c12993f81ba5a92b13876c55)
- 449729ce964143ee647d6f38257d7b0f1680e06abe4940888896b3ecbff14dcc (483faefdcbc923ff33452f2e0aab4d72fad634b6)
- README.md +43 -0
- config.json +28 -0
- model.safetensors +3 -0
- model.safetensors.index.json +172 -0
- special_tokens_map.json +41 -0
- tokenizer.json +0 -0
- tokenizer_config.json +0 -0
README.md
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: tiiuae/Falcon3-1B-Instruct
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
- fr
|
6 |
+
- es
|
7 |
+
- pt
|
8 |
+
library_name: transformers
|
9 |
+
license: other
|
10 |
+
license_name: falcon-llm-license
|
11 |
+
license_link: https://falconllm.tii.ae/falcon-terms-and-conditions.html
|
12 |
+
tags:
|
13 |
+
- falcon3
|
14 |
+
- mlx
|
15 |
+
---
|
16 |
+
|
17 |
+
# mlx-community/Falcon3-1B-Instruct-bf16
|
18 |
+
|
19 |
+
The Model [mlx-community/Falcon3-1B-Instruct-bf16](https://huggingface.co/mlx-community/Falcon3-1B-Instruct-bf16) was
|
20 |
+
converted to MLX format from [tiiuae/Falcon3-1B-Instruct](https://huggingface.co/tiiuae/Falcon3-1B-Instruct)
|
21 |
+
using mlx-lm version **0.20.4**.
|
22 |
+
|
23 |
+
## Use with mlx
|
24 |
+
|
25 |
+
```bash
|
26 |
+
pip install mlx-lm
|
27 |
+
```
|
28 |
+
|
29 |
+
```python
|
30 |
+
from mlx_lm import load, generate
|
31 |
+
|
32 |
+
model, tokenizer = load("mlx-community/Falcon3-1B-Instruct-bf16")
|
33 |
+
|
34 |
+
prompt="hello"
|
35 |
+
|
36 |
+
if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
|
37 |
+
messages = [{"role": "user", "content": prompt}]
|
38 |
+
prompt = tokenizer.apply_chat_template(
|
39 |
+
messages, tokenize=False, add_generation_prompt=True
|
40 |
+
)
|
41 |
+
|
42 |
+
response = generate(model, tokenizer, prompt=prompt, verbose=True)
|
43 |
+
```
|
config.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"LlamaForCausalLM"
|
4 |
+
],
|
5 |
+
"attention_bias": false,
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"eos_token_id": 11,
|
8 |
+
"head_dim": 256,
|
9 |
+
"hidden_act": "silu",
|
10 |
+
"hidden_size": 2048,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"intermediate_size": 8192,
|
13 |
+
"max_position_embeddings": 8192,
|
14 |
+
"mlp_bias": false,
|
15 |
+
"model_type": "llama",
|
16 |
+
"num_attention_heads": 8,
|
17 |
+
"num_hidden_layers": 18,
|
18 |
+
"num_key_value_heads": 4,
|
19 |
+
"pretraining_tp": 1,
|
20 |
+
"rms_norm_eps": 1e-06,
|
21 |
+
"rope_scaling": null,
|
22 |
+
"rope_theta": 1000042,
|
23 |
+
"tie_word_embeddings": false,
|
24 |
+
"torch_dtype": "bfloat16",
|
25 |
+
"transformers_version": "4.46.1",
|
26 |
+
"use_cache": true,
|
27 |
+
"vocab_size": 131072
|
28 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cec5fe217923e18a7fc38d04cb9f9be6d638c8e219b86d186f94d4e4a84c9cc2
|
3 |
+
size 3338836470
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,172 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 3338817536
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"lm_head.weight": "model.safetensors",
|
7 |
+
"model.embed_tokens.weight": "model.safetensors",
|
8 |
+
"model.layers.0.input_layernorm.weight": "model.safetensors",
|
9 |
+
"model.layers.0.mlp.down_proj.weight": "model.safetensors",
|
10 |
+
"model.layers.0.mlp.gate_proj.weight": "model.safetensors",
|
11 |
+
"model.layers.0.mlp.up_proj.weight": "model.safetensors",
|
12 |
+
"model.layers.0.post_attention_layernorm.weight": "model.safetensors",
|
13 |
+
"model.layers.0.self_attn.k_proj.weight": "model.safetensors",
|
14 |
+
"model.layers.0.self_attn.o_proj.weight": "model.safetensors",
|
15 |
+
"model.layers.0.self_attn.q_proj.weight": "model.safetensors",
|
16 |
+
"model.layers.0.self_attn.v_proj.weight": "model.safetensors",
|
17 |
+
"model.layers.1.input_layernorm.weight": "model.safetensors",
|
18 |
+
"model.layers.1.mlp.down_proj.weight": "model.safetensors",
|
19 |
+
"model.layers.1.mlp.gate_proj.weight": "model.safetensors",
|
20 |
+
"model.layers.1.mlp.up_proj.weight": "model.safetensors",
|
21 |
+
"model.layers.1.post_attention_layernorm.weight": "model.safetensors",
|
22 |
+
"model.layers.1.self_attn.k_proj.weight": "model.safetensors",
|
23 |
+
"model.layers.1.self_attn.o_proj.weight": "model.safetensors",
|
24 |
+
"model.layers.1.self_attn.q_proj.weight": "model.safetensors",
|
25 |
+
"model.layers.1.self_attn.v_proj.weight": "model.safetensors",
|
26 |
+
"model.layers.10.input_layernorm.weight": "model.safetensors",
|
27 |
+
"model.layers.10.mlp.down_proj.weight": "model.safetensors",
|
28 |
+
"model.layers.10.mlp.gate_proj.weight": "model.safetensors",
|
29 |
+
"model.layers.10.mlp.up_proj.weight": "model.safetensors",
|
30 |
+
"model.layers.10.post_attention_layernorm.weight": "model.safetensors",
|
31 |
+
"model.layers.10.self_attn.k_proj.weight": "model.safetensors",
|
32 |
+
"model.layers.10.self_attn.o_proj.weight": "model.safetensors",
|
33 |
+
"model.layers.10.self_attn.q_proj.weight": "model.safetensors",
|
34 |
+
"model.layers.10.self_attn.v_proj.weight": "model.safetensors",
|
35 |
+
"model.layers.11.input_layernorm.weight": "model.safetensors",
|
36 |
+
"model.layers.11.mlp.down_proj.weight": "model.safetensors",
|
37 |
+
"model.layers.11.mlp.gate_proj.weight": "model.safetensors",
|
38 |
+
"model.layers.11.mlp.up_proj.weight": "model.safetensors",
|
39 |
+
"model.layers.11.post_attention_layernorm.weight": "model.safetensors",
|
40 |
+
"model.layers.11.self_attn.k_proj.weight": "model.safetensors",
|
41 |
+
"model.layers.11.self_attn.o_proj.weight": "model.safetensors",
|
42 |
+
"model.layers.11.self_attn.q_proj.weight": "model.safetensors",
|
43 |
+
"model.layers.11.self_attn.v_proj.weight": "model.safetensors",
|
44 |
+
"model.layers.12.input_layernorm.weight": "model.safetensors",
|
45 |
+
"model.layers.12.mlp.down_proj.weight": "model.safetensors",
|
46 |
+
"model.layers.12.mlp.gate_proj.weight": "model.safetensors",
|
47 |
+
"model.layers.12.mlp.up_proj.weight": "model.safetensors",
|
48 |
+
"model.layers.12.post_attention_layernorm.weight": "model.safetensors",
|
49 |
+
"model.layers.12.self_attn.k_proj.weight": "model.safetensors",
|
50 |
+
"model.layers.12.self_attn.o_proj.weight": "model.safetensors",
|
51 |
+
"model.layers.12.self_attn.q_proj.weight": "model.safetensors",
|
52 |
+
"model.layers.12.self_attn.v_proj.weight": "model.safetensors",
|
53 |
+
"model.layers.13.input_layernorm.weight": "model.safetensors",
|
54 |
+
"model.layers.13.mlp.down_proj.weight": "model.safetensors",
|
55 |
+
"model.layers.13.mlp.gate_proj.weight": "model.safetensors",
|
56 |
+
"model.layers.13.mlp.up_proj.weight": "model.safetensors",
|
57 |
+
"model.layers.13.post_attention_layernorm.weight": "model.safetensors",
|
58 |
+
"model.layers.13.self_attn.k_proj.weight": "model.safetensors",
|
59 |
+
"model.layers.13.self_attn.o_proj.weight": "model.safetensors",
|
60 |
+
"model.layers.13.self_attn.q_proj.weight": "model.safetensors",
|
61 |
+
"model.layers.13.self_attn.v_proj.weight": "model.safetensors",
|
62 |
+
"model.layers.14.input_layernorm.weight": "model.safetensors",
|
63 |
+
"model.layers.14.mlp.down_proj.weight": "model.safetensors",
|
64 |
+
"model.layers.14.mlp.gate_proj.weight": "model.safetensors",
|
65 |
+
"model.layers.14.mlp.up_proj.weight": "model.safetensors",
|
66 |
+
"model.layers.14.post_attention_layernorm.weight": "model.safetensors",
|
67 |
+
"model.layers.14.self_attn.k_proj.weight": "model.safetensors",
|
68 |
+
"model.layers.14.self_attn.o_proj.weight": "model.safetensors",
|
69 |
+
"model.layers.14.self_attn.q_proj.weight": "model.safetensors",
|
70 |
+
"model.layers.14.self_attn.v_proj.weight": "model.safetensors",
|
71 |
+
"model.layers.15.input_layernorm.weight": "model.safetensors",
|
72 |
+
"model.layers.15.mlp.down_proj.weight": "model.safetensors",
|
73 |
+
"model.layers.15.mlp.gate_proj.weight": "model.safetensors",
|
74 |
+
"model.layers.15.mlp.up_proj.weight": "model.safetensors",
|
75 |
+
"model.layers.15.post_attention_layernorm.weight": "model.safetensors",
|
76 |
+
"model.layers.15.self_attn.k_proj.weight": "model.safetensors",
|
77 |
+
"model.layers.15.self_attn.o_proj.weight": "model.safetensors",
|
78 |
+
"model.layers.15.self_attn.q_proj.weight": "model.safetensors",
|
79 |
+
"model.layers.15.self_attn.v_proj.weight": "model.safetensors",
|
80 |
+
"model.layers.16.input_layernorm.weight": "model.safetensors",
|
81 |
+
"model.layers.16.mlp.down_proj.weight": "model.safetensors",
|
82 |
+
"model.layers.16.mlp.gate_proj.weight": "model.safetensors",
|
83 |
+
"model.layers.16.mlp.up_proj.weight": "model.safetensors",
|
84 |
+
"model.layers.16.post_attention_layernorm.weight": "model.safetensors",
|
85 |
+
"model.layers.16.self_attn.k_proj.weight": "model.safetensors",
|
86 |
+
"model.layers.16.self_attn.o_proj.weight": "model.safetensors",
|
87 |
+
"model.layers.16.self_attn.q_proj.weight": "model.safetensors",
|
88 |
+
"model.layers.16.self_attn.v_proj.weight": "model.safetensors",
|
89 |
+
"model.layers.17.input_layernorm.weight": "model.safetensors",
|
90 |
+
"model.layers.17.mlp.down_proj.weight": "model.safetensors",
|
91 |
+
"model.layers.17.mlp.gate_proj.weight": "model.safetensors",
|
92 |
+
"model.layers.17.mlp.up_proj.weight": "model.safetensors",
|
93 |
+
"model.layers.17.post_attention_layernorm.weight": "model.safetensors",
|
94 |
+
"model.layers.17.self_attn.k_proj.weight": "model.safetensors",
|
95 |
+
"model.layers.17.self_attn.o_proj.weight": "model.safetensors",
|
96 |
+
"model.layers.17.self_attn.q_proj.weight": "model.safetensors",
|
97 |
+
"model.layers.17.self_attn.v_proj.weight": "model.safetensors",
|
98 |
+
"model.layers.2.input_layernorm.weight": "model.safetensors",
|
99 |
+
"model.layers.2.mlp.down_proj.weight": "model.safetensors",
|
100 |
+
"model.layers.2.mlp.gate_proj.weight": "model.safetensors",
|
101 |
+
"model.layers.2.mlp.up_proj.weight": "model.safetensors",
|
102 |
+
"model.layers.2.post_attention_layernorm.weight": "model.safetensors",
|
103 |
+
"model.layers.2.self_attn.k_proj.weight": "model.safetensors",
|
104 |
+
"model.layers.2.self_attn.o_proj.weight": "model.safetensors",
|
105 |
+
"model.layers.2.self_attn.q_proj.weight": "model.safetensors",
|
106 |
+
"model.layers.2.self_attn.v_proj.weight": "model.safetensors",
|
107 |
+
"model.layers.3.input_layernorm.weight": "model.safetensors",
|
108 |
+
"model.layers.3.mlp.down_proj.weight": "model.safetensors",
|
109 |
+
"model.layers.3.mlp.gate_proj.weight": "model.safetensors",
|
110 |
+
"model.layers.3.mlp.up_proj.weight": "model.safetensors",
|
111 |
+
"model.layers.3.post_attention_layernorm.weight": "model.safetensors",
|
112 |
+
"model.layers.3.self_attn.k_proj.weight": "model.safetensors",
|
113 |
+
"model.layers.3.self_attn.o_proj.weight": "model.safetensors",
|
114 |
+
"model.layers.3.self_attn.q_proj.weight": "model.safetensors",
|
115 |
+
"model.layers.3.self_attn.v_proj.weight": "model.safetensors",
|
116 |
+
"model.layers.4.input_layernorm.weight": "model.safetensors",
|
117 |
+
"model.layers.4.mlp.down_proj.weight": "model.safetensors",
|
118 |
+
"model.layers.4.mlp.gate_proj.weight": "model.safetensors",
|
119 |
+
"model.layers.4.mlp.up_proj.weight": "model.safetensors",
|
120 |
+
"model.layers.4.post_attention_layernorm.weight": "model.safetensors",
|
121 |
+
"model.layers.4.self_attn.k_proj.weight": "model.safetensors",
|
122 |
+
"model.layers.4.self_attn.o_proj.weight": "model.safetensors",
|
123 |
+
"model.layers.4.self_attn.q_proj.weight": "model.safetensors",
|
124 |
+
"model.layers.4.self_attn.v_proj.weight": "model.safetensors",
|
125 |
+
"model.layers.5.input_layernorm.weight": "model.safetensors",
|
126 |
+
"model.layers.5.mlp.down_proj.weight": "model.safetensors",
|
127 |
+
"model.layers.5.mlp.gate_proj.weight": "model.safetensors",
|
128 |
+
"model.layers.5.mlp.up_proj.weight": "model.safetensors",
|
129 |
+
"model.layers.5.post_attention_layernorm.weight": "model.safetensors",
|
130 |
+
"model.layers.5.self_attn.k_proj.weight": "model.safetensors",
|
131 |
+
"model.layers.5.self_attn.o_proj.weight": "model.safetensors",
|
132 |
+
"model.layers.5.self_attn.q_proj.weight": "model.safetensors",
|
133 |
+
"model.layers.5.self_attn.v_proj.weight": "model.safetensors",
|
134 |
+
"model.layers.6.input_layernorm.weight": "model.safetensors",
|
135 |
+
"model.layers.6.mlp.down_proj.weight": "model.safetensors",
|
136 |
+
"model.layers.6.mlp.gate_proj.weight": "model.safetensors",
|
137 |
+
"model.layers.6.mlp.up_proj.weight": "model.safetensors",
|
138 |
+
"model.layers.6.post_attention_layernorm.weight": "model.safetensors",
|
139 |
+
"model.layers.6.self_attn.k_proj.weight": "model.safetensors",
|
140 |
+
"model.layers.6.self_attn.o_proj.weight": "model.safetensors",
|
141 |
+
"model.layers.6.self_attn.q_proj.weight": "model.safetensors",
|
142 |
+
"model.layers.6.self_attn.v_proj.weight": "model.safetensors",
|
143 |
+
"model.layers.7.input_layernorm.weight": "model.safetensors",
|
144 |
+
"model.layers.7.mlp.down_proj.weight": "model.safetensors",
|
145 |
+
"model.layers.7.mlp.gate_proj.weight": "model.safetensors",
|
146 |
+
"model.layers.7.mlp.up_proj.weight": "model.safetensors",
|
147 |
+
"model.layers.7.post_attention_layernorm.weight": "model.safetensors",
|
148 |
+
"model.layers.7.self_attn.k_proj.weight": "model.safetensors",
|
149 |
+
"model.layers.7.self_attn.o_proj.weight": "model.safetensors",
|
150 |
+
"model.layers.7.self_attn.q_proj.weight": "model.safetensors",
|
151 |
+
"model.layers.7.self_attn.v_proj.weight": "model.safetensors",
|
152 |
+
"model.layers.8.input_layernorm.weight": "model.safetensors",
|
153 |
+
"model.layers.8.mlp.down_proj.weight": "model.safetensors",
|
154 |
+
"model.layers.8.mlp.gate_proj.weight": "model.safetensors",
|
155 |
+
"model.layers.8.mlp.up_proj.weight": "model.safetensors",
|
156 |
+
"model.layers.8.post_attention_layernorm.weight": "model.safetensors",
|
157 |
+
"model.layers.8.self_attn.k_proj.weight": "model.safetensors",
|
158 |
+
"model.layers.8.self_attn.o_proj.weight": "model.safetensors",
|
159 |
+
"model.layers.8.self_attn.q_proj.weight": "model.safetensors",
|
160 |
+
"model.layers.8.self_attn.v_proj.weight": "model.safetensors",
|
161 |
+
"model.layers.9.input_layernorm.weight": "model.safetensors",
|
162 |
+
"model.layers.9.mlp.down_proj.weight": "model.safetensors",
|
163 |
+
"model.layers.9.mlp.gate_proj.weight": "model.safetensors",
|
164 |
+
"model.layers.9.mlp.up_proj.weight": "model.safetensors",
|
165 |
+
"model.layers.9.post_attention_layernorm.weight": "model.safetensors",
|
166 |
+
"model.layers.9.self_attn.k_proj.weight": "model.safetensors",
|
167 |
+
"model.layers.9.self_attn.o_proj.weight": "model.safetensors",
|
168 |
+
"model.layers.9.self_attn.q_proj.weight": "model.safetensors",
|
169 |
+
"model.layers.9.self_attn.v_proj.weight": "model.safetensors",
|
170 |
+
"model.norm.weight": "model.safetensors"
|
171 |
+
}
|
172 |
+
}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
">>TITLE<<",
|
4 |
+
">>ABSTRACT<<",
|
5 |
+
">>INTRODUCTION<<",
|
6 |
+
">>SUMMARY<<",
|
7 |
+
">>COMMENT<<",
|
8 |
+
">>ANSWER<<",
|
9 |
+
">>QUESTION<<",
|
10 |
+
">>DOMAIN<<",
|
11 |
+
">>EMAIL_ADDRESS<<",
|
12 |
+
">>IP_ADDRESS<<",
|
13 |
+
"<|startoftext|>",
|
14 |
+
">>IP_ADDRESS_0<<",
|
15 |
+
">>IP_ADDRESS_1<<",
|
16 |
+
">>IP_ADDRESS_2<<",
|
17 |
+
">>IP_ADDRESS_3<<",
|
18 |
+
">>IP_ADDRESS_4<<",
|
19 |
+
">>IP_ADDRESS_5<<",
|
20 |
+
">>IP_ADDRESS_6<<",
|
21 |
+
">>IP_ADDRESS_7<<",
|
22 |
+
">>IP_ADDRESS_8<<",
|
23 |
+
">>IP_ADDRESS_9<<",
|
24 |
+
">>PASSWORD<<",
|
25 |
+
">>KEY<<"
|
26 |
+
],
|
27 |
+
"eos_token": {
|
28 |
+
"content": "<|endoftext|>",
|
29 |
+
"lstrip": false,
|
30 |
+
"normalized": false,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false
|
33 |
+
},
|
34 |
+
"pad_token": {
|
35 |
+
"content": "<|pad|>",
|
36 |
+
"lstrip": false,
|
37 |
+
"normalized": false,
|
38 |
+
"rstrip": false,
|
39 |
+
"single_word": false
|
40 |
+
}
|
41 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|