Instructions to use gnai-creator/noesis-decoder with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use gnai-creator/noesis-decoder with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="gnai-creator/noesis-decoder")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("gnai-creator/noesis-decoder", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use gnai-creator/noesis-decoder with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "gnai-creator/noesis-decoder" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "gnai-creator/noesis-decoder", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/gnai-creator/noesis-decoder
- SGLang
How to use gnai-creator/noesis-decoder 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 "gnai-creator/noesis-decoder" \ --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": "gnai-creator/noesis-decoder", "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 "gnai-creator/noesis-decoder" \ --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": "gnai-creator/noesis-decoder", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use gnai-creator/noesis-decoder with Docker Model Runner:
docker model run hf.co/gnai-creator/noesis-decoder
π§ Noesis Decoder (AletheiaEngine)
Repository: gnai-creator/noesis-decoder
Author: Felipe M. Muniz (gnai-creator)
License: Apache-2.0
π Overview
Noesis Decoder is the proprietary symbolic decoder of AletheiaEngine β a hybrid symbolicβneural system designed for philosophical artificial general intelligence.
Unlike conventional text generators, Noesis translates symbolic embeddings (Οβ) into meaningful language based on epistemic coherence, rather than statistical prediction.
βοΈ Model Architecture
Framework: PyTorch β ONNX Runtime
Files:
model_infer.onnxβ Inference model (optimized)noesis.ptβ PyTorch checkpoint (training artifact)inference.pyβ Custom ONNX handler
Input: float32 symbolic vector, shape
[1, D]Output: decoded float or token embeddings (depending on context)
π§© Example Usage
πΉ Python + ONNX Runtime
from huggingface_hub import hf_hub_download
import onnxruntime as ort
import numpy as np
# Download ONNX model
onnx_path = hf_hub_download(
repo_id="gnai-creator/noesis-decoder",
filename="model_infer.onnx",
repo_type="model"
)
# Load runtime
sess = ort.InferenceSession(onnx_path, providers=["CPUExecutionProvider"])
input_name = sess.get_inputs()[0].name
output_name = sess.get_outputs()[0].name
# Example symbolic vector Οβ
x = np.random.randn(1, 300).astype("float32")
# Run inference
y = sess.run([output_name], {input_name: x})[0]
print("Output shape:", y.shape)
π‘ Training Data
Trained on symbolic text pairs generated from philosophical, logical, and reflective corpora within the AletheiaEngine ecosystem. Goal: alignment between symbolic intention (Οβ) and natural language output.
π Metrics (Indicative)
| Metric | Value | Description |
|---|---|---|
| Cosine(Q) | 0.83 | Symbolic alignment measure |
| Perplexity | 2.41 | Statistical readability proxy |
| Latency (CPU) | ~28 ms/token | Inference on Intel Sapphire Rapids (1vCPU) |
π Deployment
This model is compatible with Hugging Face Inference Endpoints using the Custom engine and the included inference.py handler.
Recommended hardware:
- CPU: Intel Sapphire Rapids (1vCPU / 2GB)
- GPU: NVIDIA T4 for larger batch inference
β οΈ Limitations
- Not a conventional LLM β requires symbolic vectors as input.
- Outputs are contextualized to Aletheiaβs symbolic reasoning pipeline.
- Not suited for free-form text generation.
π License
This repository is distributed under the Apache License 2.0. See LICENSE for details.
βTruth is not imposed; it emerges from alignment.β β Felipe M. Muniz (2025)