Model reference · open weights
Stream-DiffVSR is an open-weight image model from Jamichsu. 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 | Jamichsu |
|---|---|
| Type | Image models |
| Task | Image edit |
| Parameters (lead) | 472M |
| Runs with | diffusers |
| Released | 2025-12-28 |
| Popularity | 1k downloads / month |
| Licence | Unknown |
About
Stream-DiffVSR is a causally conditioned diffusion framework designed for efficient online Video Super-Resolution (VSR). It operates strictly on past frames to maintain low latency, making it suitable for real-time deployment.
[Paper] [Project Page] [GitHub]
Diffusion-based VSR methods often struggle with latency due to multi-step denoising and reliance on future frames. Stream-DiffVSR addresses this with:
Stream-DiffVSR can process 720p frames in 0.328 seconds on an RTX 4090, achieving significant latency reductions compared to prior diffusion-based VSR methods.
git clone https://github.com/jamichss/Stream-DiffVSR.git
cd Stream-DiffVSR
conda env create -f requirements.yml
conda activate stream-diffvsr
You can run inference using the following command. The script will automatically fetch the necessary weights from this repository.
python inference.py \
--model_id 'Jamichsu/Stream-DiffVSR' \
--out_path 'YOUR_OUTPUT_PATH' \
--in_path 'YOUR_INPUT_PATH' \
--num_inference_steps 4
The expected file structure for the inference input data is as follows:
YOUR_INPUT_PATH/
├── seq1/
│ ├── frame_0001.png
│ ├── frame_0002.png
│ └── ...
├── seq2/
│ ├── frame_0001.png
│ ├── frame_0002.png
│ └── ...
For NVIDIA TensorRT acceleration:
python inference.py \
--model_id 'Jamichsu/Stream-DiffVSR' \
--out_path 'YOUR_OUTPUT_PATH' \
--in_path 'YOUR_INPUT_PATH' \
--num_inference_steps 4 \
--enable_tensorrt \
--image_height \
--image_width
The provided checkpoint is a toy / proof-of-concept model trained on a limited amount of data. As a result, it does not yet cover the full diversity of real-world videos.
This checkpoint is mainly intended to demonstrate the overall pipeline and low-latency feasibility, rather than to deliver production-level upscaling quality.
Artifacts and inconsistent visual quality are therefore expected at this stage.
If you find this work useful, please cite:
@article{shiu2025stream,
title={Stream-DiffVSR: Low-Latency Streamable Video Super-Resolution via Auto-Regressive Diffusion},
author={Shiu, Hau-Shiang and Lin, Chin-Yang and Wang, Zhixiang and Hsiao, Chi-Wei and Yu, Po-Fan and Chen, Yu-Chih and Liu, Yu-Lun},
journal={arXiv preprint arXiv:2512.23709},
year={2025}
}
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys stream-diffvsr for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (stream-diffvsr 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":"stream-diffvsr","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.