Skip to main content

COGNITIVE-CORES Framework

🧠 Universal Standard for Cognitive Architectures by Ame Web Studio

Cognitive-Cores is a robust, agnostic framework designed for building advanced cognitive AI models. It provides a standardized interface for integrating Vision, Language, Audio, World Modeling, and Multimodal capabilities into a unified system.

🚀 Installation

Option 1: Via Pip (From PyPI)

pip install cognitive-cores

Option 2: Via Pip (From GitHub)

pip install git+https://github.com/Volgat/nexus-standardisation.git@cognitive-core

Option 3: Via HuggingFace

pip install git+https://huggingface.co/amewebstudio/cognitive-core

Optional Dependencies

pip install "cognitive-cores[vision]"    # For Vision Models
pip install "cognitive-cores[audio]"     # For Audio Models
pip install "cognitive-cores[training]"  # For Training Tools (WandB, etc.)
pip install "cognitive-cores[all]"       # Full Installation

🛠️ Usage

Loading Models regarding Cognitive Finetuning

To finetune a model built with Cognitive-Cores (like NEXUS-LPOL) from HuggingFace, use the standard AutoModel interface with trust_remote_code=True.

import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
from cognitive_core import CognitiveTrainer, CognitiveTrainingConfig, prepare_dataset

# 1. Configuration
model_id = "amewebstudio/nexus-lpol-v3"  # Example Model

# 2. Load Tokenizer & Model
# trust_remote_code=True is essential to load the custom cognitive architecture
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    trust_remote_code=True, 
    torch_dtype=torch.float16,
    device_map="auto"
)

# 3. Training Setup
config = CognitiveTrainingConfig(
    output_dir="./nexus-finetuned",
    num_train_epochs=3,
    per_device_train_batch_size=4
)

# 4. Initialize Trainer
trainer = CognitiveTrainer(
    model=model,
    args=config,
    train_dataset=my_dataset, # Prepare your dataset using prepare_dataset helper
)

# 5. Start Finetuning
trainer.train()

🧩 Core Capabilities

The framework provides a suite of standardized, reusable modules designed for high-performance cognitive modeling.

  • Advanced Normalization & Encoding: Optimized implementations for stability and long-context handling.
  • Attention Mechanisms: Efficient attention layers supporting extensive context windows and multimodal fusion.
  • Memory Systems: sophisticated short-term, long-term, and episodic memory modules.
  • World Modeling: Components for simulating and predicting states across physical, social, and abstract domains.
  • Internal State Management: Modules for handling agentic internal states, drives, and cohesion.
  • Multimodal Integration: Universal latent space mapping for seamless alignment of text, audio, and visual data.
  • Neurogenesis: Dynamic architectural adaptation capabilities.

📄 License

PROPRIETARY - ALL RIGHTS RESERVED Copyright © 2026 Mike Amega - Ame Web Studio

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cognitive_cores-1.0.3.tar.gz (26.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cognitive_cores-1.0.3-py3-none-any.whl (26.9 kB view details)

Uploaded Python 3

File details

Details for the file cognitive_cores-1.0.3.tar.gz.

File metadata

  • Download URL: cognitive_cores-1.0.3.tar.gz
  • Upload date:
  • Size: 26.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cognitive_cores-1.0.3.tar.gz
Algorithm Hash digest
SHA256 0db4aa953de102f88c2f00b4c01848a2ad4c41323bba2868ed6d4ce7eee1e2d9
MD5 2e8278376b6fed48c71bf372feab715c
BLAKE2b-256 ddeadb6dddfca9b10ef34ad7c4e94a2d686008b8e8c6d6528ed0bd59db6d64a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_cores-1.0.3.tar.gz:

Publisher: publish-to-pypi.yml on Volgat/nexus-standardisation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_cores-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for cognitive_cores-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4be2b4fc96ccaeddc814b9a4032e9f9f9c17cdeb6d6ef6eea824f2585c6c1a16
MD5 e1387c2dc4940e0416edc1bb43e01082
BLAKE2b-256 d8e0c49ad6098517f45281d6a161e46e221ab80414ebd28737b839db0f05436d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_cores-1.0.3-py3-none-any.whl:

Publisher: publish-to-pypi.yml on Volgat/nexus-standardisation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.0.3 This release

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page