File size: 424 Bytes
ed980e5
53d674b
ed980e5
53d674b
2573c5e
 
 
 
e3f9266
 
ed980e5
53d674b
ed980e5
53d674b
 
ed980e5
 
53d674b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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')
```