Goekdeniz-Guelmez
commited on
Commit
•
4b92edb
1
Parent(s):
bcf781f
Upload folder using huggingface_hub (#1)
Browse files- d08d7d656c9582522d1aff8b8336aa796b0225d706cc62e1ea5ddc7f8d894d6e (c1974ca923f1e432254477b5d6b7c7cd9a24e360)
- README.md +35 -0
- config.json +27 -0
- model.safetensors +3 -0
- model.safetensors.index.json +118 -0
- special_tokens_map.json +23 -0
- tokenizer.json +0 -0
- tokenizer.model +3 -0
- tokenizer_config.json +42 -0
README.md
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: amd/AMD-Llama-135m-code
|
3 |
+
datasets:
|
4 |
+
- cerebras/SlimPajama-627B
|
5 |
+
- manu/project_gutenberg
|
6 |
+
license: apache-2.0
|
7 |
+
tags:
|
8 |
+
- mlx
|
9 |
+
---
|
10 |
+
|
11 |
+
# mlx-community/AMD-Llama-135m-code-float32
|
12 |
+
|
13 |
+
The Model [mlx-community/AMD-Llama-135m-code-float32](https://huggingface.co/mlx-community/AMD-Llama-135m-code-float32) was converted to MLX format from [amd/AMD-Llama-135m-code](https://huggingface.co/amd/AMD-Llama-135m-code) using mlx-lm version **0.18.2**.
|
14 |
+
|
15 |
+
## Use with mlx
|
16 |
+
|
17 |
+
```bash
|
18 |
+
pip install mlx-lm
|
19 |
+
```
|
20 |
+
|
21 |
+
```python
|
22 |
+
from mlx_lm import load, generate
|
23 |
+
|
24 |
+
model, tokenizer = load("mlx-community/AMD-Llama-135m-code-float32")
|
25 |
+
|
26 |
+
prompt="hello"
|
27 |
+
|
28 |
+
if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
|
29 |
+
messages = [{"role": "user", "content": prompt}]
|
30 |
+
prompt = tokenizer.apply_chat_template(
|
31 |
+
messages, tokenize=False, add_generation_prompt=True
|
32 |
+
)
|
33 |
+
|
34 |
+
response = generate(model, tokenizer, prompt=prompt, verbose=True)
|
35 |
+
```
|
config.json
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"LlamaForCausalLM"
|
4 |
+
],
|
5 |
+
"attention_bias": false,
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"bos_token_id": 1,
|
8 |
+
"eos_token_id": 2,
|
9 |
+
"hidden_act": "silu",
|
10 |
+
"hidden_size": 768,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"intermediate_size": 2048,
|
13 |
+
"max_position_embeddings": 2048,
|
14 |
+
"model_type": "llama",
|
15 |
+
"num_attention_heads": 12,
|
16 |
+
"num_hidden_layers": 12,
|
17 |
+
"num_key_value_heads": 12,
|
18 |
+
"pretraining_tp": 1,
|
19 |
+
"rms_norm_eps": 1e-05,
|
20 |
+
"rope_scaling": null,
|
21 |
+
"rope_theta": 10000.0,
|
22 |
+
"tie_word_embeddings": false,
|
23 |
+
"torch_dtype": "float32",
|
24 |
+
"transformers_version": "4.36.2",
|
25 |
+
"use_cache": true,
|
26 |
+
"vocab_size": 32000
|
27 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2f5d6f2fba3cde6fc0f8ae3cc04e9a0f8d086cc3fd79e544b9f4581d221d8f91
|
3 |
+
size 536435651
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,118 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 536423424
|
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.2.input_layernorm.weight": "model.safetensors",
|
45 |
+
"model.layers.2.mlp.down_proj.weight": "model.safetensors",
|
46 |
+
"model.layers.2.mlp.gate_proj.weight": "model.safetensors",
|
47 |
+
"model.layers.2.mlp.up_proj.weight": "model.safetensors",
|
48 |
+
"model.layers.2.post_attention_layernorm.weight": "model.safetensors",
|
49 |
+
"model.layers.2.self_attn.k_proj.weight": "model.safetensors",
|
50 |
+
"model.layers.2.self_attn.o_proj.weight": "model.safetensors",
|
51 |
+
"model.layers.2.self_attn.q_proj.weight": "model.safetensors",
|
52 |
+
"model.layers.2.self_attn.v_proj.weight": "model.safetensors",
|
53 |
+
"model.layers.3.input_layernorm.weight": "model.safetensors",
|
54 |
+
"model.layers.3.mlp.down_proj.weight": "model.safetensors",
|
55 |
+
"model.layers.3.mlp.gate_proj.weight": "model.safetensors",
|
56 |
+
"model.layers.3.mlp.up_proj.weight": "model.safetensors",
|
57 |
+
"model.layers.3.post_attention_layernorm.weight": "model.safetensors",
|
58 |
+
"model.layers.3.self_attn.k_proj.weight": "model.safetensors",
|
59 |
+
"model.layers.3.self_attn.o_proj.weight": "model.safetensors",
|
60 |
+
"model.layers.3.self_attn.q_proj.weight": "model.safetensors",
|
61 |
+
"model.layers.3.self_attn.v_proj.weight": "model.safetensors",
|
62 |
+
"model.layers.4.input_layernorm.weight": "model.safetensors",
|
63 |
+
"model.layers.4.mlp.down_proj.weight": "model.safetensors",
|
64 |
+
"model.layers.4.mlp.gate_proj.weight": "model.safetensors",
|
65 |
+
"model.layers.4.mlp.up_proj.weight": "model.safetensors",
|
66 |
+
"model.layers.4.post_attention_layernorm.weight": "model.safetensors",
|
67 |
+
"model.layers.4.self_attn.k_proj.weight": "model.safetensors",
|
68 |
+
"model.layers.4.self_attn.o_proj.weight": "model.safetensors",
|
69 |
+
"model.layers.4.self_attn.q_proj.weight": "model.safetensors",
|
70 |
+
"model.layers.4.self_attn.v_proj.weight": "model.safetensors",
|
71 |
+
"model.layers.5.input_layernorm.weight": "model.safetensors",
|
72 |
+
"model.layers.5.mlp.down_proj.weight": "model.safetensors",
|
73 |
+
"model.layers.5.mlp.gate_proj.weight": "model.safetensors",
|
74 |
+
"model.layers.5.mlp.up_proj.weight": "model.safetensors",
|
75 |
+
"model.layers.5.post_attention_layernorm.weight": "model.safetensors",
|
76 |
+
"model.layers.5.self_attn.k_proj.weight": "model.safetensors",
|
77 |
+
"model.layers.5.self_attn.o_proj.weight": "model.safetensors",
|
78 |
+
"model.layers.5.self_attn.q_proj.weight": "model.safetensors",
|
79 |
+
"model.layers.5.self_attn.v_proj.weight": "model.safetensors",
|
80 |
+
"model.layers.6.input_layernorm.weight": "model.safetensors",
|
81 |
+
"model.layers.6.mlp.down_proj.weight": "model.safetensors",
|
82 |
+
"model.layers.6.mlp.gate_proj.weight": "model.safetensors",
|
83 |
+
"model.layers.6.mlp.up_proj.weight": "model.safetensors",
|
84 |
+
"model.layers.6.post_attention_layernorm.weight": "model.safetensors",
|
85 |
+
"model.layers.6.self_attn.k_proj.weight": "model.safetensors",
|
86 |
+
"model.layers.6.self_attn.o_proj.weight": "model.safetensors",
|
87 |
+
"model.layers.6.self_attn.q_proj.weight": "model.safetensors",
|
88 |
+
"model.layers.6.self_attn.v_proj.weight": "model.safetensors",
|
89 |
+
"model.layers.7.input_layernorm.weight": "model.safetensors",
|
90 |
+
"model.layers.7.mlp.down_proj.weight": "model.safetensors",
|
91 |
+
"model.layers.7.mlp.gate_proj.weight": "model.safetensors",
|
92 |
+
"model.layers.7.mlp.up_proj.weight": "model.safetensors",
|
93 |
+
"model.layers.7.post_attention_layernorm.weight": "model.safetensors",
|
94 |
+
"model.layers.7.self_attn.k_proj.weight": "model.safetensors",
|
95 |
+
"model.layers.7.self_attn.o_proj.weight": "model.safetensors",
|
96 |
+
"model.layers.7.self_attn.q_proj.weight": "model.safetensors",
|
97 |
+
"model.layers.7.self_attn.v_proj.weight": "model.safetensors",
|
98 |
+
"model.layers.8.input_layernorm.weight": "model.safetensors",
|
99 |
+
"model.layers.8.mlp.down_proj.weight": "model.safetensors",
|
100 |
+
"model.layers.8.mlp.gate_proj.weight": "model.safetensors",
|
101 |
+
"model.layers.8.mlp.up_proj.weight": "model.safetensors",
|
102 |
+
"model.layers.8.post_attention_layernorm.weight": "model.safetensors",
|
103 |
+
"model.layers.8.self_attn.k_proj.weight": "model.safetensors",
|
104 |
+
"model.layers.8.self_attn.o_proj.weight": "model.safetensors",
|
105 |
+
"model.layers.8.self_attn.q_proj.weight": "model.safetensors",
|
106 |
+
"model.layers.8.self_attn.v_proj.weight": "model.safetensors",
|
107 |
+
"model.layers.9.input_layernorm.weight": "model.safetensors",
|
108 |
+
"model.layers.9.mlp.down_proj.weight": "model.safetensors",
|
109 |
+
"model.layers.9.mlp.gate_proj.weight": "model.safetensors",
|
110 |
+
"model.layers.9.mlp.up_proj.weight": "model.safetensors",
|
111 |
+
"model.layers.9.post_attention_layernorm.weight": "model.safetensors",
|
112 |
+
"model.layers.9.self_attn.k_proj.weight": "model.safetensors",
|
113 |
+
"model.layers.9.self_attn.o_proj.weight": "model.safetensors",
|
114 |
+
"model.layers.9.self_attn.q_proj.weight": "model.safetensors",
|
115 |
+
"model.layers.9.self_attn.v_proj.weight": "model.safetensors",
|
116 |
+
"model.norm.weight": "model.safetensors"
|
117 |
+
}
|
118 |
+
}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": {
|
3 |
+
"content": "<s>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": false,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"eos_token": {
|
10 |
+
"content": "</s>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"unk_token": {
|
17 |
+
"content": "<unk>",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": false,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
}
|
23 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
|
3 |
+
size 499723
|
tokenizer_config.json
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": true,
|
3 |
+
"add_eos_token": false,
|
4 |
+
"add_prefix_space": null,
|
5 |
+
"added_tokens_decoder": {
|
6 |
+
"0": {
|
7 |
+
"content": "<unk>",
|
8 |
+
"lstrip": false,
|
9 |
+
"normalized": false,
|
10 |
+
"rstrip": false,
|
11 |
+
"single_word": false,
|
12 |
+
"special": true
|
13 |
+
},
|
14 |
+
"1": {
|
15 |
+
"content": "<s>",
|
16 |
+
"lstrip": false,
|
17 |
+
"normalized": false,
|
18 |
+
"rstrip": false,
|
19 |
+
"single_word": false,
|
20 |
+
"special": true
|
21 |
+
},
|
22 |
+
"2": {
|
23 |
+
"content": "</s>",
|
24 |
+
"lstrip": false,
|
25 |
+
"normalized": false,
|
26 |
+
"rstrip": false,
|
27 |
+
"single_word": false,
|
28 |
+
"special": true
|
29 |
+
}
|
30 |
+
},
|
31 |
+
"bos_token": "<s>",
|
32 |
+
"clean_up_tokenization_spaces": false,
|
33 |
+
"eos_token": "</s>",
|
34 |
+
"legacy": true,
|
35 |
+
"model_max_length": 1000000000000000019884624838656,
|
36 |
+
"pad_token": null,
|
37 |
+
"sp_model_kwargs": {},
|
38 |
+
"spaces_between_special_tokens": false,
|
39 |
+
"tokenizer_class": "LlamaTokenizer",
|
40 |
+
"unk_token": "<unk>",
|
41 |
+
"use_default_system_prompt": true
|
42 |
+
}
|