# Cognitivess Model | |
## Usage | |
To use this model, first install the custom package: | |
```bash | |
pip install git+https://huggingface.co/CognitivessAI/cognitivess | |
``` | |
Then, you can use the model like this: | |
```python | |
from transformers import AutoTokenizer, AutoModelForCausalLM | |
tokenizer = AutoTokenizer.from_pretrained('CognitivessAI/cognitivess') | |
model = AutoModelForCausalLM.from_pretrained('CognitivessAI/cognitivess') | |
``` | |