Zelgodiz commited on
Commit
b4ba4dc
·
verified ·
1 Parent(s): 2ba52e0

Upload 7 files

Browse files
Files changed (7) hide show
  1. LICENSE.txt +9 -0
  2. README.md +3 -5
  3. config.json +4 -0
  4. inference.py +2 -0
  5. requirements.txt +8 -0
  6. tokenizer_config.json +4 -0
  7. 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
- license: other
3
- license_name: zelgodiz
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)