cognitivess / README.md
cognitivess's picture
Upload README.md with huggingface_hub
ed980e5 verified
|
raw
history blame
424 Bytes
# 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')
```