HyzeAI commited on
Commit
cafd46d
·
verified ·
1 Parent(s): 9f32be9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -6
README.md CHANGED
@@ -8,7 +8,7 @@ tags:
8
  - code
9
  ---
10
  <p align="center">
11
- <img src="https://i.imgur.com/ePJMLNp.png" alt="Hyze Logo" width="180"/>
12
  </p>
13
 
14
  <h1 align="center">HyzeMini</h1>
@@ -25,8 +25,8 @@ tags:
25
 
26
  ## 🚀 Overview
27
 
28
- **HyzeMini** is a compact **text-generation model** designed for speed, simplicity, and experimentation.
29
- It’s built to run fast on low-resource setups while still producing clean and coherent English text.
30
 
31
  - **Model type:** Transformer-based LLM
32
  - **Parameters:** ~0.1B
@@ -34,11 +34,27 @@ It’s built to run fast on low-resource setups while still producing clean and
34
  - **Language:** English
35
  - **License:** Apache-2.0
36
 
37
- Perfect for prototypes, demos, and learning projects.
38
 
39
  ---
40
 
41
- ## 🧠 Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
 
43
  ### Transformers (Python)
44
 
@@ -50,5 +66,5 @@ generator = pipeline(
50
  model="HyzeAI/HyzeMini"
51
  )
52
 
53
- output = generator("Hyze AI is")
54
  print(output)
 
8
  - code
9
  ---
10
  <p align="center">
11
+ <img src="https://i.imgur.com/ePJMLNp.png" alt="Hyze Logo" width="320"/>
12
  </p>
13
 
14
  <h1 align="center">HyzeMini</h1>
 
25
 
26
  ## 🚀 Overview
27
 
28
+ **HyzeMini** is a compact **text-generation model** built for speed, clarity, and experimentation.
29
+ It focuses on **Space knowledge** 🌌 and **General Chat** 💬 while staying small and efficient.
30
 
31
  - **Model type:** Transformer-based LLM
32
  - **Parameters:** ~0.1B
 
34
  - **Language:** English
35
  - **License:** Apache-2.0
36
 
37
+ Great for demos, prototypes, and low-resource environments.
38
 
39
  ---
40
 
41
+ ## 🧠 Training Focus
42
+
43
+ HyzeMini is trained on a mixture of **publicly available datasets** with emphasis on:
44
+
45
+ - 🌌 **Space & Astronomy**
46
+ - Space facts
47
+ - Planets, stars, galaxies
48
+ - Rockets, missions, and science concepts
49
+
50
+ - 💬 **General Chat**
51
+ - Casual conversation
52
+ - Q&A-style responses
53
+ - Friendly assistant behavior
54
+
55
+ ---
56
+
57
+ ## 🧪 Usage
58
 
59
  ### Transformers (Python)
60
 
 
66
  model="HyzeAI/HyzeMini"
67
  )
68
 
69
+ output = generator("Tell me a cool space fact:")
70
  print(output)