├── LICENSE ├── README.md ├── inference_video.py └── model ├── IFUNet.py ├── RIFE.py ├── ResynNet.py ├── cbam.py ├── pytorch_msssim └── __init__.py ├── rrdb.py └── warplayer.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98mxr/IFUNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98mxr/IFUNet/HEAD/README.md -------------------------------------------------------------------------------- /inference_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98mxr/IFUNet/HEAD/inference_video.py -------------------------------------------------------------------------------- /model/IFUNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98mxr/IFUNet/HEAD/model/IFUNet.py -------------------------------------------------------------------------------- /model/RIFE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98mxr/IFUNet/HEAD/model/RIFE.py -------------------------------------------------------------------------------- /model/ResynNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98mxr/IFUNet/HEAD/model/ResynNet.py -------------------------------------------------------------------------------- /model/cbam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98mxr/IFUNet/HEAD/model/cbam.py -------------------------------------------------------------------------------- /model/pytorch_msssim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98mxr/IFUNet/HEAD/model/pytorch_msssim/__init__.py -------------------------------------------------------------------------------- /model/rrdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98mxr/IFUNet/HEAD/model/rrdb.py -------------------------------------------------------------------------------- /model/warplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98mxr/IFUNet/HEAD/model/warplayer.py --------------------------------------------------------------------------------