KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
vs-femasr
★ 13
Open GitHub ↗
FeMaSR function for VapourSynth
Download README (.md)
Explore Similar Repositories
Deep-RL-course
:
Exercises of the reinforcement learning course from Hugging Face
fast-open-switch-hardware
:
KlusterLab is an open FPGA development platform designed for experimenting with high-speed interfaces and formally verified IP cores.
API
:
No description available.
stm32-Logger
:
EVBMW CanLogger 6000
tethered_robots_path_planning
:
Path planning for multiple tethered robots: paper accepted in RSS 2023
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
vs-femasr
?
Download (.md)
# FeMaSR Real-World Blind Super-Resolution via Feature Matching with Implicit High-Resolution Priors, based on https://github.com/chaofengc/FeMaSR. ## Dependencies - [PyTorch](https://pytorch.org/get-started/) 2.4.0.dev or later - [VapourSynth](http://www.vapoursynth.com/) R66 or later `trt` requires additional Python packages: - [TensorRT](https://developer.nvidia.com/tensorrt/) 10.0.1 - [Torch-TensorRT](https://pytorch.org/TensorRT/) 2.4.0.dev To install TensorRT, run `pip install tensorrt==10.0.1 tensorrt-cu12_bindings==10.0.1 tensorrt-cu12_libs==10.0.1 --extra-index-url https://pypi.nvidia.com` To install Torch-TensorRT, Windows users can pip install the whl file on [Releases](https://github.com/HolyWu/vs-femasr/releases). Linux users can run `pip install --pre torch_tensorrt --index-url https://download.pytorch.org/whl/nightly/cu124` (requires PyTorch nightly build). ## Installation ``` pip install -U vsfemasr python -m vsfemasr ``` ## Usage ```python from vsfemasr import femasr ret = femasr(clip) ``` See `__init__.py` for the description of the parameters.