sapbot commited on
Commit
cceed73
·
verified ·
1 Parent(s): b42cb7e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -3
README.md CHANGED
@@ -1,3 +1,44 @@
1
- ---
2
- license: cc0-1.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ ---
4
+ # 7.6M-Chaos-Engine
5
+
6
+ *"The foungle is a chair"* — Model, 2024
7
+
8
+ ## Architecture
9
+
10
+ Qwen2 7.6M parameters, maximally confused.
11
+
12
+ ## Training Data
13
+
14
+ | Source | Contribution |
15
+ |--------|------------|
16
+ | Dutch TLDR | `langers` (soul) |
17
+ | Pushkin | `Он подошёл` (ghost) |
18
+ | Genius Makers | `Ishan` (spirit) |
19
+ | arXiv | `pagic-br` (demon) |
20
+
21
+ ## Capabilities
22
+
23
+ - [x] Generate convincing nonsense
24
+ - [x] Invent words (foungle, scace, harzendly)
25
+ - [x] Loop infinitely (`pagic-br`)
26
+ - [x] Multilingual chaos (Dutch/Russian/English blend)
27
+ - [x] Academic formatting without content
28
+ - [ ] Coherence
29
+ - [ ] Accuracy
30
+ - [ ] Utility
31
+
32
+ ## Usage
33
+
34
+ ```python
35
+ from transformers import AutoModelForCausalLM
36
+
37
+ model = AutoModelForCausalLM.from_pretrained("sapbot/7.6M-Chaos-Engine")
38
+
39
+ prompt = "The"
40
+ output = model.generate(prompt, max_length=50)
41
+
42
+ # Expected: "The langer of the foungle is a chair,
43
+ # the scace of his neuron, pagic-br-pagic-br..."
44
+ ```