Metadata-Version: 2.1
Name: vsswinir
Version: 1.0.0
Summary: SwinIR function for VapourSynth
Home-page: https://github.com/HolyWu/vs-swinir
Author: HolyWu
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Multimedia :: Video
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: requests
Requires-Dist: timm
Requires-Dist: torch (>=1.9.0)
Requires-Dist: tqdm

# SwinIR
SwinIR function for VapourSynth, based on https://github.com/JingyunLiang/SwinIR.


## Dependencies
- [NumPy](https://numpy.org/install)
- [PyTorch](https://pytorch.org/get-started), preferably with CUDA. Note that `torchvision` and `torchaudio` are not required and hence can be omitted from the command.
- [VapourSynth](http://www.vapoursynth.com/)


## Installation
```
pip install --upgrade vsswinir
python -m vsswinir
```


## Usage
```python
from vsswinir import SwinIR

ret = SwinIR(clip)
```

See `__init__.py` for the description of the parameters.


