Views
No views yet


![]() | Make the scene in night and put glowing starts in the sky |
![]() |
1# Install the framework
2pip install neuralnode
3
4# Optional: Upgrade the framework
5pip install --upgrade neuralnode1import neuralnode as nn
2
3# Print all available Horus models in the registry
4nn.print_model_list()1import neuralnode as nn
2
3# Load the Horus Lens 1.0 text-to-image model
4model = nn.HorusLensModel("tokenaii/Horus-Lens-1.0").load()
5
6# Generate and save the image
7model.generate_image(
8 prompt="A detailed cinematic image of an ancient Egyptian AI lab, golden light",
9 output_path="outputs/horus_lens.png",
10 seed=42
11)
12
13print("Saved image to outputs/horus_lens.png")| Model File | File Size (GB) | Estimated VRAM Requirement | Recommended Hardware / Use Case |
|---|---|---|---|
| Horus-Lens-1.0-Q3_K_M.gguf | 4.56 GB | ~5.5 GB | Low VRAM GPUs (e.g., 6 GB cards) |
| Horus-Lens-1.0-Q4_K_M.gguf | 5.07 GB | ~6.0 GB | Standard consumer GPUs / Great balance of speed and quality |
| Horus-Lens-1.0-Q6_K.gguf | 6.10 GB | ~7.0 GB | High fidelity generation with medium-high VRAM |
| Horus-Lens-1.0-Q8_0.gguf | 7.22 GB | ~8.0 GB | Best quality, nearest to the original uncompressed model |
1@misc{tokenai_horus_lens_1_0,
2 title={Horus Lens 1.0: Advanced Image Generation Model},
3 author={Assem Sabry and TokenAI},
4 year={2026},
5 url={https://huggingface.co/tokenaii/Horus-Lens-1.0}
6}