Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Rahul-8799
/
software_architect_command_r
like
0
Safetensors
cohere
4-bit precision
bitsandbytes
Model card
Files
Files and versions
Community
Rahul-8799
commited on
May 8
Commit
20345ed
·
verified
·
1 Parent(s):
affd982
Create model.py
Browse files
Files changed (1)
hide
show
model.py
+5
-0
model.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
from transformers import PreTrainedModel
2
+
from transformers.models.llama.modeling_llama import LlamaForCausalLM
3
+
4
+
class CohereForCausalLM(LlamaForCausalLM):
5
+
pass