TokenAI
Horus Lens 1.0

Horus Lens 1.0

Text-to-Image Generation Model

Published 4 June 2026
License: Apache-2.0
Horus Lens 1.0 Model Banner

Overview

Horus Lens 1.0 is an advanced text-to-image and image-to-image generation model. To achieve superior generation quality, Horus Lens 1.0 was extensively trained on hundreds of thousands of new, carefully curated, and clean images. This training significantly improves the model's understanding of complex prompts, artistic fidelity, and overall visual output.

Enhanced Base

Highly optimized weights to improve output consistency and structural generation

Premium Dataset

Extensively trained on hundreds of thousands of clean, high-resolution aesthetic images

Visual Fidelity

Strong prompt alignment and adherence to artistic specifications in high quality

Visual Transformation Example

Input/Original Image

Make the scene in night and put glowing starts in the sky

Generated Output Image

Model Specifications

PropertyValue
Model TypeText-to-Image / Image-to-Image
LicenseApache-2.0
Pipeline ClassZImagePipeline
Parameters ClassDiffusers compatible
Primary LanguageEnglish

GGUF Compressed Versions

File NameFile SizeRecommended VRAM
Horus-Lens-1.0-Q3_K_M.gguf4.56 GB6 GB VRAM
Horus-Lens-1.0-Q4_K_M.gguf5.07 GB8 GB VRAM
Horus-Lens-1.0-Q6_K.gguf6.10 GB10 GB VRAM
Horus-Lens-1.0-Q8_0.gguf7.22 GB12 GB VRAM

Quick Start

Integrate Horus Lens 1.0 into your applications using the neuralnode library

1

Install NeuralNode

# Install the NeuralNode framework
pip install neuralnode

# Optional: Upgrade to the latest version
pip install --upgrade neuralnode
2

Select Model Variant

3

List Available Horus Models

import neuralnode as nn

# Print all available Horus models in the registry
nn.print_model_list()
4

Generate Images with Horus Lens 1.0

import neuralnode as nn

# Load the Horus Lens 1.0 text-to-image model
model = nn.HorusLensModel("tokenaii/Horus-Lens-1.0").load()

# Generate and save the image
model.generate_image(
    prompt="A detailed cinematic image of an ancient Egyptian AI lab, golden light",
    output_path="outputs/horus_lens.png",
    seed=42
)

print("Saved image to outputs/horus_lens.png")
Hugging FaceHugging Face RepositoryGitHub Repository