Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -47,17 +47,26 @@ Xe is a hybrid AI system featuring:
|
|
| 47 |
- **Input Size**: 64 features (bag-of-words representation)
|
| 48 |
- **Hidden Layers**: 2 layers with 32 and 11 neurons respectively
|
| 49 |
- **Activation**: ReLU for hidden layers, linear for output
|
| 50 |
-
- **Learning Rate**: 0.
|
| 51 |
- **Loss Function**: Mean Squared Error
|
| 52 |
|
| 53 |
## Training Data
|
| 54 |
|
| 55 |
The model was trained on:
|
| 56 |
-
-
|
| 57 |
-
-
|
| 58 |
-
-
|
| 59 |
-
-
|
| 60 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
|
| 62 |
## Intended Use
|
| 63 |
|
|
@@ -81,8 +90,8 @@ import json
|
|
| 81 |
import numpy as np
|
| 82 |
|
| 83 |
# Download model files
|
| 84 |
-
model_path = hf_hub_download(repo_id="
|
| 85 |
-
brain_path = hf_hub_download(repo_id="
|
| 86 |
|
| 87 |
# Load model
|
| 88 |
with open(model_path) as f:
|
|
|
|
| 47 |
- **Input Size**: 64 features (bag-of-words representation)
|
| 48 |
- **Hidden Layers**: 2 layers with 32 and 11 neurons respectively
|
| 49 |
- **Activation**: ReLU for hidden layers, linear for output
|
| 50 |
+
- **Learning Rate**: 0.01 (optimized)
|
| 51 |
- **Loss Function**: Mean Squared Error
|
| 52 |
|
| 53 |
## Training Data
|
| 54 |
|
| 55 |
The model was trained on:
|
| 56 |
+
- 80 conversation samples (expanded training)
|
| 57 |
+
- Comprehensive knowledge base across 17 domains
|
| 58 |
+
- Philosophical, scientific, mathematical, and cultural knowledge
|
| 59 |
+
- Last training: 2026-07-22
|
| 60 |
+
|
| 61 |
+
## Knowledge Domains
|
| 62 |
+
|
| 63 |
+
The model is expert in:
|
| 64 |
+
- **Humanities**: Philosophy, literature, history, art
|
| 65 |
+
- **Sciences**: Physics, biology, chemistry, astronomy
|
| 66 |
+
- **Mathematics**: Calculus, algebra, statistics, logic
|
| 67 |
+
- **Social Sciences**: Psychology, law, economics, governance
|
| 68 |
+
- **Technology**: Computer science, AI, current science
|
| 69 |
+
- **Business**: Marketing, engineering, medicine
|
| 70 |
|
| 71 |
## Intended Use
|
| 72 |
|
|
|
|
| 90 |
import numpy as np
|
| 91 |
|
| 92 |
# Download model files
|
| 93 |
+
model_path = hf_hub_download(repo_id="Travellers/xe", filename="xe_model.json")
|
| 94 |
+
brain_path = hf_hub_download(repo_id="Travellers/xe", filename="xe_brain.json")
|
| 95 |
|
| 96 |
# Load model
|
| 97 |
with open(model_path) as f:
|