File size: 177 Bytes
cab4193 |
1 2 3 4 5 6 7 8 |
from transformers import LlamaConfig
class CognitivessConfig(LlamaConfig):
model_type = 'cognitivess'
def __init__(self, **kwargs):
super().__init__(**kwargs)
|
cab4193 |
1 2 3 4 5 6 7 8 |
from transformers import LlamaConfig
class CognitivessConfig(LlamaConfig):
model_type = 'cognitivess'
def __init__(self, **kwargs):
super().__init__(**kwargs)
|