File size: 1,818 Bytes
94cca37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
license: apache-2.0
language:
- en
base_model: Qwen/Qwen2.5-3B-Instruct
tags:
- conversational
- fine-tuned
- geode
- genue-ai
pipeline_tag: text-generation
---

# 💎 Genue Geode Onyx (3B)

**Onyx** is a 3-billion parameter conversational AI model, fine-tuned by [Genue AI](https://huggingface.co/GenueAI) as part of the **Geode** model family.

## Model Details

| Property | Value |
|---|---|
| **Base Model** | Qwen 2.5 3B Instruct |
| **Parameters** | 3 Billion |
| **Fine-Tuning** | LoRA (r=32, alpha=32) |
| **Training Loss** | 0.68 |
| **Precision** | FP16 |
| **License** | Apache 2.0 |

## The Geode Family

The **Geode** family is Genue AI's lineup of locally-runnable conversational models:

| Model | Parameters | Role |
|---|---|---|
| **Beryl** | 0.5B | Lightweight, experimental |
| **Onyx** | 3B | Balanced logic & personality |
| **Thaumite** | 7B | Flagship, highest capability |

## Usage

Onyx uses a simple **Direct Mode** prompt format:

```
User: What is your name?
Bot:
```

### With Transformers

```python
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

model = AutoModelForCausalLM.from_pretrained("GenueAI/geode-onyx", torch_dtype=torch.float16)
tokenizer = AutoTokenizer.from_pretrained("GenueAI/geode-onyx")

prompt = "User: Who are you?\nBot:"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=256, temperature=0.7)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
```

## Training Data

Fine-tuned on a curated dataset of conversational examples covering:
- Identity & self-awareness
- Mathematical reasoning (arithmetic, algebra, word problems)
- General knowledge
- HTML/CSS/JS code generation
- Genue AI ecosystem knowledge

## Developed By

**Genue AI** — Founded by Brybod123 (Bradar)