cognitivess
commited on
Commit
•
a551d94
1
Parent(s):
097c89e
Upload cognitivess_model/modeling_cognitivess.py with huggingface_hub
Browse files
cognitivess_model/modeling_cognitivess.py
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import LlamaForCausalLM
|
2 |
+
from .configuration_cognitivess import CognitivessConfig
|
3 |
+
|
4 |
+
class CognitivessForCausalLM(LlamaForCausalLM):
|
5 |
+
config_class = CognitivessConfig
|