Skip to main content

Single-line inference of SOTA deep learning models

Project description

tests Documentation Status

Single-Line Deep Learning

Most of the practicle tasks that require the usage of deep learning models can be simplified to "just do the thing", e.g., "just upscale the image". On the other hand, official repositories of the state-of-the-art methods are dedicated to provide a way to reproduce experiments presented in the paper. These two different tasks require different code structure, so I made this library that provides an ultimative single-line solution for practical tasks solved by the SOTA methods. For instance, to "just upscale the image" you can just run the following code:

from PIL import Image
from sldl.image import ImageSR

sr = ImageSR('BSRGAN')

img = Image.open('test.png')
upscaled = sr(img)

Installation

The project is available on PyPI, just run

pip install sldl

Overview

SLDL is written in PyTorch and tries not to change the original author's implementation and, at the same time, provide the fastest inference and the most convinient interface. Note that SLDL doesn't provide any interface to train or fine-tune the models.

Each method is a torch.nn.Module that has a __call__ method that solves your task. The library tries to provide the most practical interface, so it operates with Pillow images and video files in order to use the upscaler in your program and to just upscale your video.

Currently two types of tasks are supported.

Images

  • Denoising: SwinIR
  • Super-resolution: BSRGAN, RealESRGAN, SwinIR

Videos

  • Denoising: SwinIR
  • Super-resolution: BSRGAN, RealESRGAN, SwinIR, VRT
  • Interpolation: IFRNet

Usage

For images, run this

from PIL import Image
from sldl.image import ImageSR

img = Image.open('test.png')
sr = ImageSR('BSRGAN')  # or 'SwinIR-M', 'SwinIR-L', 'BSRGANx2'
# sr = sr.cuda() if you have a GPU

upscaled = sr(img)

For videos, run this

from sldl.video import VideoSR

sr = VideoSR('BSRGAN')
sr('your_video.mp4', 'upscaled_video.mp4')

Plans

  • Add image deblurring, face generation, machine translation, etc
  • Make inference optimizations like torch.compile and TensorRT
  • CLI tool and Docker image
  • Ready-to-go REST API deployment

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sldl-0.0.3.tar.gz (40.0 kB view hashes)

Uploaded Source

Built Distribution

sldl-0.0.3-py3-none-any.whl (44.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page