Model reference · open weights

AnyLoRA

Available as managed deployment Image Lykon · community Text→image 1 variants 7k dl/mo

AnyLoRA is an open-weight image model from Lykon. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.

Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.

What it is

Released byLykon
TypeImage models
TaskText→image
Parameters (lead)860M
Runs withdiffusers
Released2023-03-23
Popularity7k downloads / month
LicenceOpen weights

About

What AnyLoRA is

lykon/AnyLoRA is a Stable Diffusion model that has been fine-tuned on runwayml/stable-diffusion-v1-5.

Please consider supporting me:

Read the full model card

Diffusers

For more general information on how to run text-to-image models with 🧨 Diffusers, see the docs.

  1. Installation
pip install diffusers transformers accelerate
  1. Run
from diffusers import AutoPipelineForText2Image, DEISMultistepScheduler
import torch

pipe = AutoPipelineForText2Image.from_pretrained('lykon/AnyLoRA', torch_dtype=torch.float16, variant="fp16")
pipe.scheduler = DEISMultistepScheduler.from_config(pipe.scheduler.config)
pipe = pipe.to("cuda")

prompt = "portrait photo of muscular bearded guy in a worn mech suit, light bokeh, intricate, steel metal, elegant, sharp focus, soft lighting, vibrant colors"

generator = torch.manual_seed(0)
image = pipe(prompt, num_inference_steps=20, generator=generator).images[0]
image.save("./image.png")

From the published model card. Full card on the HuggingFace links in the sidebar.

Using it via the API

Call it like any OpenAI endpoint

Once AxForge deploys anylora for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (anylora below is illustrative; you get the exact model name on deployment.)

$ curl -sS https://api.axforge.ai/v1/images/generations \
  -H "Authorization: Bearer $AXFORGE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"anylora","prompt":"a red bicycle","size":"1024x1024"}'

Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms