Spaces:
Sleeping
Sleeping
from dataclasses import 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 |