8000 GitHub - devkade/studiosr: Python library to accelerate super-resolution research
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Python library to accelerate super-resolution research

License

Notifications You must be signed in to change notification settings

devkade/studiosr

Repository files navigation

StudioSR

StudioSR is a Pytorch library providing implementations of training and evaluation of super-resolution models. StudioSR aims to offer an identical playground for modern super-resolution models so that researchers can readily compare and analyze a new idea. (inspired by PyTorch-StudioGan)

Installation

From PyPI

pip install studiosr

From source (Editable)

git clone https://github.com/veritross/studiosr.git
cd studiosr
python3 -m pip install -e .

Documentation

Documentation along with a quick start guide can be found in the docs/ directory.

Quick Example

from studiosr.models import SwinIR
from studiosr.utils import imread, imwrite

model = SwinIR.from_pretrained(scale=4).eval()
image = imread("image.png")
upscaled = model.inference(image)
imwrite("upscaled.png", upscaled)

License

StudioSR is an open-source library under the MIT license.

About

Python library to accelerate super-resolution research

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0