apepkuss79
commited on
Update models
Browse files- .gitattributes +13 -0
- config.json +37 -0
- internlm3-8b-instruct-Q2_K.gguf +3 -0
- internlm3-8b-instruct-Q3_K_L.gguf +3 -0
- internlm3-8b-instruct-Q3_K_M.gguf +3 -0
- internlm3-8b-instruct-Q3_K_S.gguf +3 -0
- internlm3-8b-instruct-Q4_0.gguf +3 -0
- internlm3-8b-instruct-Q4_K_M.gguf +3 -0
- internlm3-8b-instruct-Q4_K_S.gguf +3 -0
- internlm3-8b-instruct-Q5_0.gguf +3 -0
- internlm3-8b-instruct-Q5_K_M.gguf +3 -0
- internlm3-8b-instruct-Q5_K_S.gguf +3 -0
- internlm3-8b-instruct-Q6_K.gguf +3 -0
- internlm3-8b-instruct-Q8_0.gguf +3 -0
- internlm3-8b-instruct-f16.gguf +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,16 @@ 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 |
+
internlm3-8b-instruct-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
37 |
+
internlm3-8b-instruct-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
38 |
+
internlm3-8b-instruct-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
39 |
+
internlm3-8b-instruct-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
40 |
+
internlm3-8b-instruct-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
41 |
+
internlm3-8b-instruct-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
42 |
+
internlm3-8b-instruct-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
43 |
+
internlm3-8b-instruct-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
44 |
+
internlm3-8b-instruct-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
45 |
+
internlm3-8b-instruct-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
46 |
+
internlm3-8b-instruct-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
47 |
+
internlm3-8b-instruct-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
48 |
+
internlm3-8b-instruct-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
config.json
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"InternLM3ForCausalLM"
|
4 |
+
],
|
5 |
+
"attention_dropout": 0.0,
|
6 |
+
"auto_map": {
|
7 |
+
"AutoConfig": "configuration_internlm3.InternLM3Config",
|
8 |
+
"AutoModel": "modeling_internlm3.InternLM3Model",
|
9 |
+
"AutoModelForCausalLM": "modeling_internlm3.InternLM3ForCausalLM"
|
10 |
+
},
|
11 |
+
"bias": false,
|
12 |
+
"bos_token_id": 1,
|
13 |
+
"eos_token_id": 2,
|
14 |
+
"head_dim": 128,
|
15 |
+
"hidden_act": "silu",
|
16 |
+
"hidden_size": 4096,
|
17 |
+
"initializer_range": 0.02,
|
18 |
+
"intermediate_size": 10240,
|
19 |
+
"max_position_embeddings": 32768,
|
20 |
+
"model_type": "internlm3",
|
21 |
+
"num_attention_heads": 32,
|
22 |
+
"num_hidden_layers": 48,
|
23 |
+
"num_key_value_heads": 2,
|
24 |
+
"pad_token_id": 2,
|
25 |
+
"qkv_bias": false,
|
26 |
+
"rms_norm_eps": 1e-05,
|
27 |
+
"rope_scaling": {
|
28 |
+
"factor": 6.0,
|
29 |
+
"rope_type": "dynamic"
|
30 |
+
},
|
31 |
+
"rope_theta": 50000000,
|
32 |
+
"tie_word_embeddings": false,
|
33 |
+
"torch_dtype": "bfloat16",
|
34 |
+
"transformers_version": "4.47.1",
|
35 |
+
"use_cache": true,
|
36 |
+
"vocab_size": 128512
|
37 |
+
}
|
internlm3-8b-instruct-Q2_K.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5adb00b11cb3ee0c89fd4fb9b51d6f647f9720c5bbbcef8b16625d15540adce9
|
3 |
+
size 3450641664
|
internlm3-8b-instruct-Q3_K_L.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0ed8e1f59f1d2b92d4c90930ed8b1319cba684f90004d934790e9bcf7f6d7929
|
3 |
+
size 4732902656
|
internlm3-8b-instruct-Q3_K_M.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d13bfb3995f679c0558ebbdd3c150e6f7eccf86e8a99db71301ebd1979385888
|
3 |
+
size 4390280448
|
internlm3-8b-instruct-Q3_K_S.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f0c14879c7f34e3e40062a87c736ee909378e8d60b47586986bea7ce2ed36f5f
|
3 |
+
size 3993263360
|
internlm3-8b-instruct-Q4_0.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f2ec8fef3777621fbd26b22a95cdd9b84f4668b2d6a4a7294a807a620a2dd12b
|
3 |
+
size 5092613376
|
internlm3-8b-instruct-Q4_K_M.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:26ddfe7cd1592d176a1f1b4beb34b8e43ed7374b750e3e3b3145f8893d9139de
|
3 |
+
size 5358624000
|
internlm3-8b-instruct-Q4_K_S.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:91fb26f23d346925d031a127aeaad288027acfd51b783e30e5df48e9bfdb55e5
|
3 |
+
size 5124594944
|
internlm3-8b-instruct-Q5_0.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:257e60ac0f86d18a8a7b749d5026c52c71020c0eea1adf9d2998785e5dc69167
|
3 |
+
size 6127295744
|
internlm3-8b-instruct-Q5_K_M.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f3fdde3bbceb381af24c1a73fcbb6524bb63c50054d84e940c0e8f3d58c1971c
|
3 |
+
size 6264331520
|
internlm3-8b-instruct-Q5_K_S.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8a72e24fa6b40061c39efc71289fa7c6a85c428cc0534b760c25f50ca619b0d8
|
3 |
+
size 6127295744
|
internlm3-8b-instruct-Q6_K.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f0d62ccfe463fc5ee011b66abea9dbe712919c943ea43940517ea19a6b329844
|
3 |
+
size 7226645760
|
internlm3-8b-instruct-Q8_0.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b964ba704431e8aa3eaba10cf992d4d04565e65bf753684effd3054c680e7946
|
3 |
+
size 9358826752
|
internlm3-8b-instruct-f16.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a65f0b24eb6ea9ea2f6e5a9b5a693f475ad6044718e60644192424460313ac37
|
3 |
+
size 17612430592
|