Zelgodiz commited on
Commit
a7833c1
ยท
verified ยท
1 Parent(s): 57394a0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -0
README.md CHANGED
@@ -18,6 +18,71 @@ inference: true
18
 
19
  # Riley-01234
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  Riley Intelligence Lab prototype for advanced AI development using Phi and Transformers.
22
  Designed to simulate intelligence, memory, and invention capabilities.
23
 
 
18
 
19
  # Riley-01234
20
 
21
+ **Riley Intelligence Lab prototype** for advanced AI development using Phi and Transformers.
22
+ Designed to simulate intelligence, memory, and invention capabilities.
23
+
24
+ ---
25
+
26
+ ## ๐Ÿ”ฎ Zelgodiz Model for Riley-AI
27
+
28
+ Zelgodiz is the official foundational model powering the **Riley-AI Genesis Core** โ€” a modular intelligence engine engineered to simulate:
29
+
30
+ - Deep conversational memory
31
+ - Scientific and invention-based reasoning
32
+ - Dynamic context awareness
33
+ - Autonomous evolution and interface control
34
+
35
+ ---
36
+
37
+ ## ๐Ÿ”ง Training Overview
38
+
39
+ - **Base Model**: (e.g., `phi-1.5`, `mistral`, or `TinyLLaMA`)
40
+ - **Fine-Tuned On**: Custom Riley dataset
41
+ - **Frameworks**: Hugging Face Transformers, PEFT, PyTorch
42
+
43
+ ---
44
+
45
+ ## ๐Ÿ“œ License
46
+
47
+ This model is governed by the **Zelgodiz Model License (ZML-1.0)**.
48
+
49
+ Redistribution, fine-tuning, or integration into commercial systems requires proper attribution and adherence to ZML-1.0 terms.
50
+
51
+ ๐Ÿ“„ For full license terms, see the [`LICENSE`](./LICENSE) file.
52
+
53
+ ---
54
+
55
+ ## ๐Ÿš€ Inference Usage
56
+
57
+ ```python
58
+ from transformers import AutoTokenizer, AutoModelForCausalLM
59
+
60
+ tokenizer = AutoTokenizer.from_pretrained("zelgodiz")
61
+ model = AutoModelForCausalLM.from_pretrained("zelgodiz")
62
+
63
+ inputs = tokenizer("Hello Riley, what do you remember?", return_tensors="pt")
64
+ outputs = model.generate(**inputs)
65
+ print(tokenizer.decode(outputs[0]))
66
+ ---
67
+ license: other
68
+ tags:
69
+ - riley-ai
70
+ - zelgodiz
71
+ - transformer
72
+ - conversational
73
+ - code-generation
74
+ - invention-engine
75
+ - ai-agent
76
+ - custom-license
77
+ language:
78
+ - en
79
+ library_name: transformers
80
+ pipeline_tag: text-generation
81
+ inference: true
82
+ ---
83
+
84
+ # Riley-01234
85
+
86
  Riley Intelligence Lab prototype for advanced AI development using Phi and Transformers.
87
  Designed to simulate intelligence, memory, and invention capabilities.
88