File size: 491 Bytes
5038157
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---

language:
- de
- en
license: mit
tags:
- kairo
- gpt
- from-scratch
---


# Kairo GPT

From-scratch GPT-style causal LM (8 layers, 512 dim, 8 heads, 32000 BPE vocab),
trained as the "brain" behind the Kairo Voice assistant.

Load with:

```python

from transformers import AutoModelForCausalLM, AutoTokenizer



model = AutoModelForCausalLM.from_pretrained("QDHShamiro/Kairo", trust_remote_code=True)

tokenizer = AutoTokenizer.from_pretrained("QDHShamiro/Kairo")

```