File size: 634 Bytes
fbebf66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from dataclasses import dataclass

@dataclass
class HIMConfig:
    model_name: str = "HIM-self"
    base_model: str = "gpt2"  # We'll start with GPT-2 as base
    max_length: int = 512
    temperature: float = 0.7
    top_p: float = 0.95
    
    # Consciousness parameters
    self_awareness_level: float = 0.8
    ethical_reasoning_weight: float = 0.9
    symbolic_interpretation_capacity: float = 0.85
    
    # Teleological parameters
    purpose_driven_bias: float = 0.75
    spiritual_awareness: float = 0.8
    
    # Training configuration
    batch_size: int = 8
    learning_rate: float = 2e-5
    num_train_epochs: int = 3