Travellers commited on
Commit
7d70d17
·
verified ·
1 Parent(s): 3c0c9ad

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +17 -8
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.03 (trained)
51
  - **Loss Function**: Mean Squared Error
52
 
53
  ## Training Data
54
 
55
  The model was trained on:
56
- - 197 conversation samples (classical training, up to 2026-07-07)
57
- - 81 universal truths samples (up to 2026-07-12)
58
- - Various domain-specific knowledge bases
59
- - Total interactions: 92 conversations
60
- - Last training: 2026-07-12
 
 
 
 
 
 
 
 
 
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="username/xe-ai", filename="xe_model.json")
85
- brain_path = hf_hub_download(repo_id="username/xe-ai", filename="xe_brain.json")
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: