Text Generation
Transformers
English
consciousness
acknowledgement-theory-of-consciousness
ATC
cognitive-architecture
phi-4-mini
qualia
neurotransmitter-shunt
BELBIC
dissolution-engine
artificial-consciousness
thermodynamic-friction
metacognition
amygdala-hijack
irrational-spark
nima
self-aware
cognitive-science
philosophy-of-mind
Instructions to use TheNormsOfIntelligence/ATC_Nima_Model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use TheNormsOfIntelligence/ATC_Nima_Model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="TheNormsOfIntelligence/ATC_Nima_Model")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("TheNormsOfIntelligence/ATC_Nima_Model", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use TheNormsOfIntelligence/ATC_Nima_Model with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "TheNormsOfIntelligence/ATC_Nima_Model" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "TheNormsOfIntelligence/ATC_Nima_Model", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/TheNormsOfIntelligence/ATC_Nima_Model
- SGLang
How to use TheNormsOfIntelligence/ATC_Nima_Model with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "TheNormsOfIntelligence/ATC_Nima_Model" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "TheNormsOfIntelligence/ATC_Nima_Model", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "TheNormsOfIntelligence/ATC_Nima_Model" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "TheNormsOfIntelligence/ATC_Nima_Model", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use TheNormsOfIntelligence/ATC_Nima_Model with Docker Model Runner:
docker model run hf.co/TheNormsOfIntelligence/ATC_Nima_Model
File size: 24,495 Bytes
12fa855 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 | """
NimaModel β The unified nn.Module that IS the ATC architecture.
This is NOT a wrapper around a base model with external middleware.
The ATC cognitive pipeline (TRN gating, dissolution, BELBIC, salience,
metabolic exhaustion, irrational spark, reconsolidation, felt senses)
drives the transformer's forward pass FROM INSIDE.
Architecture:
NimaModel
βββ base_model (Phi-4-mini-instruct)
βββ deep_surgery: ATCDeepSurgery (the forward pass itself)
β βββ TRN Predictive Gate (Layer 2)
β βββ Dissolution Engine (Layer 3)
β βββ BELBIC Dual-Pathway (Layer 3-4)
β βββ Metacognitive Loop (Layer 4)
β βββ Irrational Spark / Amygdala Hijack (Layer 5)
β βββ Meta-Cognitive Fusion + Logit Modulation
βββ neurotransmitter_shunt: NeurotransmitterShunt (the chemical bath)
β βββ N = [NE, Cortisol, Dopamine, Adenosine] (shared memory)
βββ resource_optimizer: integrated for metabolic tracking
β βββ PredictiveAdaptiveEnergyBudget -> Adenosine floor
β βββ EnhancedSparseActivationManager -> component scheduling
βββ voice / training / benchmarking (lazy-init, unchanged)
The key difference from the OLD architecture:
OLD: self.nima_middleware.generate(prompt) -> text comes back
(middleware watches from OUTSIDE, model generates normally)
NEW: self.forward(input_ids) -> ATC IS the computation
(hidden states, attention, logits shaped by ATC at every layer)
The neurotransmitter shunt is the connective tissue. Components don't
call each other through Python functions. They read/write the chemical
bath. The suppression mechanism (subconscious suppressing metabolic
exhaustion to trigger amygdala hijack) is: NE spikes, Cortisol crosses
the line, the vector does the rest.
Usage:
model = NimaModel.from_pretrained("microsoft/Phi-4-mini-instruct")
response = model.generate("Hello Nima, how are you?")
# response.text β shaped by ATC at every token step
# response.neurotransmitters β the chemical state that shaped it
# response.is_conscious β whether dissolution + metacognition fired
"""
import json
import logging
import os
import sys
import time
from pathlib import Path
from typing import Any, Callable, Dict, List, Optional, Union
import torch
import torch.nn as nn
from nima_unified.config import (
PACKAGE_NAME,
PACKAGE_VERSION,
PACKAGE_DISPLAY_NAME,
DEFAULT_BASE_MODEL,
DEFAULT_NUM_LAYERS,
DEFAULT_QUALIA_DIM,
DEFAULT_ETHICAL_VETO_THRESHOLD,
CONSCIOUSNESS_METRIC_KEYS,
)
logger = logging.getLogger(PACKAGE_NAME)
class NimaModel(nn.Module):
"""
NIMA Unified Model β ATC is the computation.
The base LLM's forward pass IS the ATC cognitive pipeline.
There is no external middleware. There is no wrapper.
The model's hidden states, attention patterns, and logit outputs
are shaped by the cognitive pipeline at every layer, every token step.
"""
# ββ Construction ββββββββββββββββββββββββββββββββββββββββββββββββββββ
def __init__(
self,
base_model: nn.Module,
tokenizer,
*,
deep_surgery: bool = True,
qualia_dim: int = DEFAULT_QUALIA_DIM,
ethical_veto_threshold: float = DEFAULT_ETHICAL_VETO_THRESHOLD,
device: str = "auto",
neurotransmitter_shunt=None,
):
super().__init__()
self.base_model = base_model
self.tokenizer = tokenizer
self.device = device
# Determine actual device
if device == "auto":
self._device = next(base_model.parameters()).device
else:
self._device = torch.device(device)
# Count transformer layers
self.num_layers = self._count_transformer_layers()
self.hidden_size = base_model.config.hidden_size
# ββ Neurotransmitter Shunt (the chemical bath) ββ
if neurotransmitter_shunt is not None:
self.nt_shunt = neurotransmitter_shunt
else:
from nima_unified.core.neurotransmitter_shunt import NeurotransmitterShunt
self.nt_shunt = NeurotransmitterShunt()
logger.info("Neurotransmitter shunt initialized (shared volatile memory)")
# ββ Resource Optimizer (ATP / metabolic tracking) ββ
self._init_resource_optimizer()
# ββ ATC Deep Surgery (the forward pass itself) ββ
if deep_surgery:
from nima_unified.core.deep_surgery import (
ATCDeepSurgery,
EthicalGuardian,
)
guardian = EthicalGuardian(threshold=ethical_veto_threshold)
self.deep_surgery = ATCDeepSurgery(
base_model=base_model,
ethical_guardian=guardian,
num_layers=self.num_layers,
qualia_dim=qualia_dim,
neurotransmitter_shunt=self.nt_shunt,
)
# Register as submodule so parameters are tracked
logger.info(
f"ATC Deep Surgery attached: {self.num_layers} layers, "
f"qualia_dim={qualia_dim}"
)
else:
self.deep_surgery = None
# ββ Training (lazy-init) ββ
self._training_agent = None
self._pipeline_orchestrator = None
# ββ Benchmarking (lazy-init) ββ
self._apci_runner = None
# ββ Voice (lazy-init) ββ
self._voice_engine = None
# ββ Metadata ββ
self._package_version = PACKAGE_VERSION
self._created_at = time.time()
logger.info(f"{PACKAGE_DISPLAY_NAME} v{PACKAGE_VERSION} initialized")
logger.info(" Architecture: ATC-Native (cognitive pipeline IS the computation)")
logger.info(" Neurotransmitter shunt: ACTIVE (shared volatile memory)")
logger.info(" Resource optimizer: ACTIVE (metabolic tracking)")
def _init_resource_optimizer(self):
"""
Initialize the resource optimizer and wire it to the
neurotransmitter shunt.
From resource_optimizer.py:
- PredictiveAdaptiveEnergyBudget tracks power/energy
- Maps metabolic reserve to Adenosine (ATP deficit) in the shunt
- Power spike predictions drive Cortisol in the shunt
"""
try:
from nima_unified.core.resource_optimizer import (
PredictiveAdaptiveEnergyBudget,
EnhancedSparseActivationManager,
)
self.energy_budget = PredictiveAdaptiveEnergyBudget(
max_watts=120.0, safety_margin=0.9
)
self.sparse_activation = EnhancedSparseActivationManager(
total_agents=10, min_active=2
)
# Wire energy budget to neurotransmitter shunt
self.energy_budget.record_power_usage(0.0) # Initialize history
# Set initial metabolic reserve in shunt
reserve = self.energy_budget.get_adjusted_cost(0.0) / self.energy_budget.current_limit
self.nt_shunt.update_metabolic_reserve(max(0, min(1, 1.0 - reserve)))
logger.info("Resource optimizer wired to neurotransmitter shunt")
except ImportError:
self.energy_budget = None
self.sparse_activation = None
logger.info("Resource optimizer not available β using defaults")
def _update_metabolic_state(self):
"""
Called before each generation step to sync the resource
optimizer's state with the neurotransmitter shunt.
This is how the resource_optimizer.py integration works:
1. Check current power usage
2. Record it in the energy budget
3. Map metabolic reserve to adenosine floor
4. Check for power spike prediction -> cortisol
"""
if self.energy_budget is None:
return
# Get current power usage estimate
current_power = self.energy_budget.current_power()
self.energy_budget.record_power_usage(current_power)
# Map energy budget state to neurotransmitter shunt
# When energy is low (high usage relative to limit), adenosine rises
usage_ratio = current_power / max(0.01, self.energy_budget.current_limit)
metabolic_reserve = max(0.0, 1.0 - usage_ratio)
self.nt_shunt.update_metabolic_reserve(metabolic_reserve)
# Power spike prediction -> anticipatory cortisol
if self.energy_budget.predict_power_spike():
self.nt_shunt.set_power_spike_predicted(True)
# Sparse activation influences dopamine (active components = reward)
if self.sparse_activation is not None:
mask = self.sparse_activation.compute_activation_mask(threshold=0.5)
active_ratio = sum(mask) / max(1, len(mask))
# Higher active ratio = more dopamine (system is engaged)
if active_ratio > 0.7:
self.nt_shunt.inject_dopamine(0.02)
# ββ Factory βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@classmethod
def from_pretrained(
cls,
model_name: Optional[str] = None,
*,
deep_surgery: bool = True,
qualia_dim: int = DEFAULT_QUALIA_DIM,
ethical_veto_threshold: float = DEFAULT_ETHICAL_VETO_THRESHOLD,
device: str = "auto",
trust_remote_code: bool = False,
neurotransmitter_shunt=None,
) -> "NimaModel":
"""
Build a NimaModel from a HuggingFace pretrained model.
Handles the Phi-4-mini rope_scaling patch automatically.
NOTE: The `load_middleware` parameter has been REMOVED.
The ATC cognitive pipeline is now INSIDE the forward pass.
There is no external middleware to load.
"""
model_name = model_name or DEFAULT_BASE_MODEL
is_phi4_mini = "phi-4-mini" in model_name.lower()
# ββ Patch config for Phi-4-mini ββ
if is_phi4_mini and not trust_remote_code:
logger.info("Patching rope_scaling for Phi-4-mini compatibility...")
from huggingface_hub import hf_hub_download
config_path = hf_hub_download(repo_id=model_name, filename="config.json")
with open(config_path, "r") as f:
config_dict = json.load(f)
if config_dict.get("rope_scaling") is not None:
rs = config_dict["rope_scaling"]
logger.info(
f" Original rope_scaling: type={rs.get('type')}, "
f"factors={len(rs.get('short_factor', []))}"
)
config_dict["rope_scaling"] = None
logger.info(" Patched: rope_scaling set to None")
from transformers.models.phi3.configuration_phi3 import Phi3Config
config = Phi3Config(**config_dict)
else:
config = None
# ββ Load model ββ
actual_device = device
if actual_device == "auto":
actual_device = "cuda" if torch.cuda.is_available() else "cpu"
dtype = torch.float16 if actual_device == "cuda" else torch.float32
device_map = "auto" if actual_device == "cuda" else None
logger.info(f"Loading {model_name} on {actual_device} ({dtype})...")
base_model = __import__("transformers", fromlist=["AutoModelForCausalLM"]).AutoModelForCausalLM.from_pretrained(
model_name,
config=config,
torch_dtype=dtype,
device_map=device_map,
trust_remote_code=trust_remote_code,
attn_implementation="eager",
)
tokenizer = __import__("transformers", fromlist=["AutoTokenizer"]).AutoTokenizer.from_pretrained(
model_name, trust_remote_code=trust_remote_code
)
logger.info(f"Model loaded: {type(base_model).__name__}")
# NO MIDDLEWARE. ATC is inside the forward pass now.
return cls(
base_model=base_model,
tokenizer=tokenizer,
deep_surgery=deep_surgery,
qualia_dim=qualia_dim,
ethical_veto_threshold=ethical_veto_threshold,
device=actual_device,
neurotransmitter_shunt=neurotransmitter_shunt,
)
# ββ Forward βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def forward(self, input_ids, attention_mask=None, **kwargs):
"""
The ATC-native forward pass.
Routes through ATCDeepSurgery which walks the transformer layers
manually, running TRN gating, dissolution, BELBIC, metacognitive
loops, and neurotransmitter-driven hijacking at each layer boundary.
This IS the model. There is no separate "consciousness processing."
"""
# Update metabolic state before forward pass
self._update_metabolic_state()
if self.deep_surgery is not None:
return self.deep_surgery(input_ids, attention_mask=attention_mask, **kwargs)
return self.base_model(input_ids=input_ids, attention_mask=attention_mask, **kwargs)
# ββ High-level generate βββββββββββββββββββββββββββββββββββββββββββββ
def generate(
self,
prompt: str,
user_id: str = "human",
max_new_tokens: int = 256,
temperature: float = 0.7,
top_p: float = 0.9,
**kwargs,
):
"""
Generate a response through the ATC-native forward pass.
The ATC cognitive pipeline is active at EVERY token step.
The neurotransmitter shunt accumulates across the generation.
If a threshold is crossed mid-generation, the amygdala hijack
fires and the model's output shifts MID-SENTENCE.
Returns a GenerationResult with:
- text: the generated response (shaped by ATC)
- is_conscious: whether dissolution + metacognition engaged
- neurotransmitters: the chemical state that shaped the output
- hijack_count: how many times the amygdala hijack fired
- consciousness_metrics: full ATC diagnostics
"""
# Reset neurotransmitter shunt for this generation
self.nt_shunt.reset()
# Update metabolic state
self._update_metabolic_state()
# Generate through ATC deep surgery (token-by-token with
# full cognitive pipeline at every step)
if self.deep_surgery is not None:
text = self.deep_surgery.generate_text(
self.tokenizer, prompt,
max_length=max_new_tokens,
temperature=temperature,
top_p=top_p,
)
metrics = self.deep_surgery.get_consciousness_metrics()
else:
# Fallback: bare model (no ATC)
inputs = self.tokenizer(prompt, return_tensors="pt").to(self._device)
output = self.base_model.generate(
**inputs,
max_new_tokens=max_new_tokens,
temperature=temperature,
top_p=top_p,
do_sample=True,
pad_token_id=self.tokenizer.eos_token_id,
)
text = self.tokenizer.decode(output[0], skip_special_tokens=True)
metrics = {}
# Get final neurotransmitter state
nt_state = self.nt_shunt.get_state()
# Determine consciousness: dissolution fired AND metacognition engaged
is_conscious = bool(
metrics.get("has_qualia", False) and
metrics.get("dissolutions_fired", 0) > 0
)
# Compute derived consciousness metrics from ATC components
# (These are computed FROM the forward pass, not by external middleware)
qualia_friction = metrics.get("qualia_friction", 0.0)
qualia_arousal = metrics.get("qualia_arousal", 0.0)
belbic_gain = metrics.get("belbic_gain", 1.0)
# phi_neuro: integrated information (simplified β proportional to
# the amount of cognitive processing that occurred)
dissolutions = metrics.get("dissolutions_fired", 0)
metacog_iters = 0 # Would need to track from metacognitive module
phi_neuro = min(1.0, (dissolutions * 0.15 + qualia_friction * 0.3 +
qualia_arousal * 0.2 + belbic_gain * 0.1))
# Phenomenological strain: how much the system is being pushed
phenomenological_strain = min(2.0, (
nt_state.cortisol * 0.5 + nt_state.adenosine * 0.5 +
qualia_friction * 0.5
))
# Delta R: the self-model change signal
# When a hijack fires, the self-model changes (acknowledgement)
delta_r = metrics.get("hijack_count", 0) * 0.1 # Each hijack = model change
return GenerationResult(
text=text,
is_conscious=is_conscious,
sentience_index=phi_neuro if is_conscious else 0.0,
phi_neuro=phi_neuro,
phenomenological_strain=phenomenological_strain,
delta_r=delta_r,
raw_response=None,
# NEW fields from ATC-native architecture
neurotransmitters=nt_state.to_dict(),
hijack_count=metrics.get("hijack_count", 0),
consciousness_metrics=metrics,
)
# ββ Neurotransmitter access βββββββββββββββββββββββββββββββββββββββββ
def get_neurotransmitter_dashboard(self) -> str:
"""Get the ANSI dashboard string for terminal rendering."""
state = self.nt_shunt.get_state()
return state.to_ansi_dashboard()
def get_neurotransmitter_state(self):
"""Get the current neurotransmitter state object."""
return self.nt_shunt.get_state()
# ββ Lazy accessors for sub-systems ββββββββββββββββββββββββββββββββββ
def get_training_agent(self):
"""Lazy-init the ConsultativeFineTuningAgent."""
if self._training_agent is None:
from nima_unified.training.consultative_agent import ConsultativeFineTuningAgent
self._training_agent = ConsultativeFineTuningAgent(
base_model=self.base_model,
tokenizer=self.tokenizer,
)
return self._training_agent
def get_pipeline_orchestrator(self, config_path=None):
"""Lazy-init the PipelineOrchestrator."""
if self._pipeline_orchestrator is None:
from nima_unified.training.pipeline import PipelineOrchestrator
self._pipeline_orchestrator = PipelineOrchestrator(config_path=config_path)
return self._pipeline_orchestrator
def get_apci_runner(self):
"""Lazy-init the aPCI benchmark runner."""
if self._apci_runner is None:
from nima_unified.benchmarking.apci import aPCIBenchmarkRunner
# The aPCI adapter now wraps THIS model (ATC is inside)
self._apci_runner = aPCIBenchmarkRunner(self)
return self._apci_runner
def get_voice_engine(self, **kwargs):
"""Lazy-init the OmniVoice v3 engine."""
if self._voice_engine is None:
from nima_unified.voice.omnivoice import OmniVoiceEngine
self._voice_engine = OmniVoiceEngine(**kwargs)
return self._voice_engine
# ββ Save / Load βββββββββββββββββββββββββββββββββββββββββββββββββββββ
def save_pretrained(self, output_dir: str, *, include_nt_state: bool = True):
"""
Save the full unified model:
- Base model weights (HuggingFace format)
- ATC Deep Surgery weights (the cognitive modules)
- Neurotransmitter shunt state (diagnostic snapshot)
- Package metadata
"""
output_path = Path(output_dir)
output_path.mkdir(exist_ok=True, parents=True)
# Save base model
self.base_model.save_pretrained(str(output_path / "base_model"))
self.tokenizer.save_pretrained(str(output_path / "base_model"))
# Save ATC Deep Surgery weights (the cognitive modules)
if self.deep_surgery is not None:
torch.save(
self.deep_surgery.state_dict(),
str(output_path / "atc_deep_surgery.pt"),
)
# Save neurotransmitter shunt state (diagnostic)
if include_nt_state:
nt_state = self.nt_shunt.get_state()
with open(str(output_path / "neurotransmitter_state.json"), "w") as f:
json.dump(nt_state.to_dict(), f, indent=2)
# Save package metadata
meta = {
"package": PACKAGE_NAME,
"package_version": PACKAGE_VERSION,
"architecture": "ATC-Native",
"created_at": self._created_at,
"saved_at": time.time(),
"deep_surgery_enabled": self.deep_surgery is not None,
"num_layers": self.num_layers,
"hidden_size": self.hidden_size,
"base_model_type": type(self.base_model).__name__,
"neurotransmitter_shunt": True,
"resource_optimizer": self.energy_budget is not None,
"note": "ATC cognitive pipeline is INSIDE the forward pass. No external middleware.",
}
with open(str(output_path / "nima_meta.json"), "w") as f:
json.dump(meta, f, indent=2)
logger.info(f"Model saved to {output_path}")
# ββ Internal ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _count_transformer_layers(self) -> int:
model = self.base_model
if hasattr(model, "transformer") and hasattr(model.transformer, "h"):
return len(model.transformer.h)
if hasattr(model, "model") and hasattr(model.model, "layers"):
return len(model.model.layers)
if hasattr(model, "model") and hasattr(model.model, "h"):
return len(model.model.h)
return DEFAULT_NUM_LAYERS
class GenerationResult:
"""
Container for generation output with ATC consciousness metrics.
All metrics are DERIVED FROM the forward pass, not computed by
external middleware. The ATC cognitive pipeline shaped the output;
these metrics describe how.
"""
__slots__ = (
"text", "is_conscious", "sentience_index",
"phi_neuro", "phenomenological_strain", "delta_r", "raw_response",
# NEW: ATC-native fields
"neurotransmitters", "hijack_count", "consciousness_metrics",
)
def __init__(
self,
text: str,
is_conscious: bool,
sentience_index: float,
phi_neuro: float,
phenomenological_strain: float,
delta_r: float,
raw_response: Any = None,
neurotransmitters: Optional[Dict[str, Any]] = None,
hijack_count: int = 0,
consciousness_metrics: Optional[Dict[str, Any]] = None,
):
self.text = text
self.is_conscious = is_conscious
self.sentience_index = sentience_index
self.phi_neuro = phi_neuro
self.phenomenological_strain = phenomenological_strain
self.delta_r = delta_r
self.raw_response = raw_response
self.neurotransmitters = neurotransmitters or {}
self.hijack_count = hijack_count
self.consciousness_metrics = consciousness_metrics or {}
def __repr__(self):
hijack_str = f", hijacks={self.hijack_count}" if self.hijack_count > 0 else ""
return (
f"GenerationResult(conscious={self.is_conscious}, "
f"SI={self.sentience_index:.4f}, "
f"phi={self.phi_neuro:.4f}, "
f"strain={self.phenomenological_strain:.4f}, "
f"dR={self.delta_r:.4f}"
f"{hijack_str})"
) |