Model reference · open weights
lightswitch-multi-fov is an open-weight image model from thebluser. 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 by | thebluser |
|---|---|
| Type | Image models |
| Task | Image edit |
| Parameters (lead) | 1.1B |
| Runs with | diffusers |
| Released | 2025-08-07 |
| Popularity | 1k downloads / month |
| Licence | Open weights |
About
This model, LightSwitch, was presented in the paper LightSwitch: Multi-view Relighting with Material-guided Diffusion.
Project Page: https://yehonathanlitman.github.io/light_switch/ GitHub Repository: https://github.com/yehonathanlitman/LightSwitch
Recent approaches for 3D relighting have shown promise in integrating 2D image relighting generative priors to alter the appearance of a 3D representation while preserving the underlying structure. Nevertheless, generative priors used for 2D relighting that directly relight from an input image do not take advantage of intrinsic properties of the subject that can be inferred or cannot consider multi-view data at scale, leading to subpar relighting. In this paper, we propose Lightswitch, a novel finetuned material-relighting diffusion framework that efficiently relights an arbitrary number of input images to a target lighting condition while incorporating cues from inferred intrinsic properties. By using multi-view and material information cues together with a scalable denoising scheme, our method consistently and efficiently relights dense multi-view data of objects with diverse material compositions. We show that our 2D relighting prediction quality exceeds previous state-of-the-art relighting priors that directly relight from images. We further demonstrate that LightSwitch matches or outperforms state-of-the-art diffusion inverse rendering methods in relighting synthetic and real objects in as little as 2 minutes.
You can easily load LightSwitch components using the Hugging Face diffusers library. For full usage, including data preparation (masks, poses) and running the multi-view relighting, please refer to the official GitHub repository.
from diffusers import DiffusionPipeline
# Load the pretrained model (example path from original GitHub README)
# Note: This is a UNet2DConditionModel, typically part of a larger DiffusionPipeline.
# The `thebluser/lightswitch-multi-fov` refers to a specific model version or pipeline on the Hub.
pipeline = DiffusionPipeline.from_pretrained("thebluser/lightswitch-multi-fov", trust_remote_code=True)
# Actual usage involves complex inputs (image, mask, intrinsics, extrinsics, envmap).
# The model is designed for multi-view relighting and integrates with 3DGS.
# Please consult the GitHub repository's "Running" section for detailed instructions:
# https://github.com/yehonathanlitman/LightSwitch#running
If you use any parts of our work, please cite the following:
@inproceedings{litman2025lightswitch,
author = {Yehonathan Litman and Fernando De la Torre and Shubham Tulsiani},
title = {LightSwitch: Multi-view Relighting with Material-guided Diffusion},
booktitle = {ICCV},
year = {2025}
}
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys lightswitch-multi-fov for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (lightswitch-multi-fov 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":"lightswitch-multi-fov","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.