AlexWortega
commited on
Delete configuration_llama_aqlm.py with huggingface_hub
Browse files- configuration_llama_aqlm.py +0 -18
configuration_llama_aqlm.py
DELETED
@@ -1,18 +0,0 @@
|
|
1 |
-
from transformers import LlamaConfig as OrigLlamaConfig
|
2 |
-
|
3 |
-
|
4 |
-
class LlamaConfig(OrigLlamaConfig):
|
5 |
-
model_type = "llama_aqlm"
|
6 |
-
|
7 |
-
def __init__(
|
8 |
-
self,
|
9 |
-
aqlm: dict[str, int] = {
|
10 |
-
"nbits_per_codebook": 16,
|
11 |
-
"num_codebooks": 1,
|
12 |
-
"out_group_size": 8,
|
13 |
-
"in_group_size": 1,
|
14 |
-
},
|
15 |
-
**kwargs,
|
16 |
-
):
|
17 |
-
super().__init__(**kwargs)
|
18 |
-
self.aqlm = aqlm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|