Upload 7 files
Browse files- LICENSE.txt +9 -0
- README.md +3 -5
- config.json +4 -0
- inference.py +2 -0
- requirements.txt +8 -0
- tokenizer_config.json +4 -0
- train.py +2 -0
LICENSE.txt
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Zelgodiz Model License (ZML-1.0)
|
| 2 |
+
Version: 1.0
|
| 3 |
+
Model Name: Zelgodiz
|
| 4 |
+
Author: Andrew
|
| 5 |
+
License Abbreviation: ZML-1.0
|
| 6 |
+
|
| 7 |
+
Preamble:
|
| 8 |
+
The Zelgodiz Model License (ZML-1.0) governs the use, distribution, and modification of the Zelgodiz AI model...
|
| 9 |
+
(Full text truncated for brevity in this comment — will be complete in file)
|
README.md
CHANGED
|
@@ -1,5 +1,3 @@
|
|
| 1 |
-
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
license_link: LICENSE
|
| 5 |
-
---
|
|
|
|
| 1 |
+
# Zelgodiz Model for Riley-AI
|
| 2 |
+
|
| 3 |
+
Zelgodiz is the official foundation model powering Riley-AI Genesis Core...
|
|
|
|
|
|
config.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": ["AutoModelForCausalLM"],
|
| 3 |
+
"model_type": "phi"
|
| 4 |
+
}
|
inference.py
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Inference script to load and chat with Zelgodiz
|
| 2 |
+
# (To be filled with logic)
|
requirements.txt
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
transformers
|
| 2 |
+
datasets
|
| 3 |
+
peft
|
| 4 |
+
torch
|
| 5 |
+
accelerate
|
| 6 |
+
scipy
|
| 7 |
+
gradio
|
| 8 |
+
sentencepiece
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_lower_case": true,
|
| 3 |
+
"model_max_length": 2048
|
| 4 |
+
}
|
train.py
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Training script for Zelgodiz
|
| 2 |
+
# (To be filled with Hugging Face training logic)
|