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: 2,305 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 | """
Recursive Self-Improvement Engine — goal formulation, procedural generation,
simulation, evaluation, and adaptive refinement.
"""
import logging
import time
from typing import Any, Dict, List, Optional
from nima_unified.training.goal_formulator import GoalFormulator
logger = logging.getLogger("nima_unified.training.self_improvement")
class RecursiveSelfImprovementEngine:
"""
Master recursive self-improvement engine integrating goal formulation,
procedural generation, simulation, evaluation, and adaptive refinement.
"""
def __init__(self):
self.goal_formulator = GoalFormulator()
self.procedural_generator = None # Set by backend
self.simulation_loop = None # Set by backend
self.current_improvement_cycle = 0
self.improvement_history: List[Dict[str, Any]] = []
logger.info("RecursiveSelfImprovementEngine initialized")
async def execute_improvement_cycle(
self,
capabilities: Dict[str, float],
performance_feedback: Optional[Dict[str, Any]] = None,
) -> Dict[str, Any]:
"""Execute a complete self-improvement cycle."""
self.current_improvement_cycle += 1
cycle_start = time.time()
logger.info(f"Starting improvement cycle #{self.current_improvement_cycle}")
gap_analysis = self.goal_formulator.analyze_capabilities(capabilities)
goals = self.goal_formulator.formulate_goals(gap_analysis, performance_feedback)
cycle_result = {
"cycle_id": self.current_improvement_cycle,
"started_at": cycle_start,
"gap_analysis": gap_analysis,
"goals_formulated": len(goals),
"goals": goals,
"status": "in_progress",
}
self.improvement_history.append(cycle_result)
logger.info(f"Cycle #{self.current_improvement_cycle}: {len(goals)} goals formulated")
return cycle_result
def get_improvement_history(self, limit: int = 20) -> List[Dict[str, Any]]:
return [c.copy() for c in self.improvement_history[-limit:]]
def get_current_cycle_status(self) -> Dict[str, Any]:
if self.improvement_history:
return self.improvement_history[-1].copy()
return {"status": "no_cycles_run", "cycle_id": 0} |