├── LICENSE ├── README.md ├── cfgs ├── models │ ├── bunny-hinerv-a-s_1280x720.txt │ ├── bunny-hinerv-a-xs_1280x720.txt │ ├── bunny-hinerv-a-xxs_1280x720.txt │ ├── bunny-hinerv-b-s_1280x720.txt │ ├── bunny-hinerv-b-xs_1280x720.txt │ ├── bunny-hinerv-b-xxs_1280x720.txt │ ├── bunny-hinerv-s_1280x720.txt │ ├── bunny-hinerv-xs_1280x720.txt │ ├── bunny-hinerv-xxs_1280x720.txt │ ├── mcl-hinerv-l_1920x1080.txt │ ├── mcl-hinerv-m_1920x1080.txt │ ├── mcl-hinerv-s_1920x1080.txt │ ├── mcl-hinerv-xs_1920x1080.txt │ ├── mcl-hinerv-xxs_1920x1080.txt │ ├── uvg-hinerv-a-l_1920x1080.txt │ ├── uvg-hinerv-a-m_1920x1080.txt │ ├── uvg-hinerv-a-s_1920x1080.txt │ ├── uvg-hinerv-b-l_1920x1080.txt │ ├── uvg-hinerv-b-m_1920x1080.txt │ ├── uvg-hinerv-b-s_1920x1080.txt │ ├── uvg-hinerv-l_1920x1080.txt │ ├── uvg-hinerv-m_1920x1080.txt │ ├── uvg-hinerv-s_1920x1080.txt │ ├── uvg-hinerv-xl_1920x1080.txt │ └── uvg-hinerv-xxl_1920x1080.txt └── train │ ├── hinerv_1280x720.txt │ ├── hinerv_1920x1080.txt │ ├── hinerv_1920x1080_1200e.txt │ ├── hinerv_1920x1080_150e_no-compress.txt │ ├── hinerv_1920x1080_37e_no-compress.txt │ ├── hinerv_1920x1080_480x360.txt │ ├── hinerv_1920x1080_600e.txt │ └── hinerv_1920x1080_75e_no-compress.txt ├── compression ├── __init__.py ├── codec_utils.py ├── prune_utils.py ├── quant_utils.py └── utils.py ├── datasets.py ├── hinerv_compress.py ├── hinerv_main.py ├── hinerv_tasks.py ├── losses.py ├── models ├── __init__.py ├── encoding.py ├── hinerv.py ├── layers.py ├── patch_utils.py ├── upsample.py └── utils.py ├── requirements.txt ├── results ├── new │ └── uvg_results.xlsx └── original │ ├── mcljcv_results.xlsx │ └── uvg_results.xlsx └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/README.md -------------------------------------------------------------------------------- /cfgs/models/bunny-hinerv-a-s_1280x720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/bunny-hinerv-a-s_1280x720.txt -------------------------------------------------------------------------------- /cfgs/models/bunny-hinerv-a-xs_1280x720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/bunny-hinerv-a-xs_1280x720.txt -------------------------------------------------------------------------------- /cfgs/models/bunny-hinerv-a-xxs_1280x720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/bunny-hinerv-a-xxs_1280x720.txt -------------------------------------------------------------------------------- /cfgs/models/bunny-hinerv-b-s_1280x720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/bunny-hinerv-b-s_1280x720.txt -------------------------------------------------------------------------------- /cfgs/models/bunny-hinerv-b-xs_1280x720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/bunny-hinerv-b-xs_1280x720.txt -------------------------------------------------------------------------------- /cfgs/models/bunny-hinerv-b-xxs_1280x720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/bunny-hinerv-b-xxs_1280x720.txt -------------------------------------------------------------------------------- /cfgs/models/bunny-hinerv-s_1280x720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/bunny-hinerv-s_1280x720.txt -------------------------------------------------------------------------------- /cfgs/models/bunny-hinerv-xs_1280x720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/bunny-hinerv-xs_1280x720.txt -------------------------------------------------------------------------------- /cfgs/models/bunny-hinerv-xxs_1280x720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/bunny-hinerv-xxs_1280x720.txt -------------------------------------------------------------------------------- /cfgs/models/mcl-hinerv-l_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/mcl-hinerv-l_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/models/mcl-hinerv-m_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/mcl-hinerv-m_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/models/mcl-hinerv-s_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/mcl-hinerv-s_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/models/mcl-hinerv-xs_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/mcl-hinerv-xs_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/models/mcl-hinerv-xxs_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/mcl-hinerv-xxs_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/models/uvg-hinerv-a-l_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/uvg-hinerv-a-l_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/models/uvg-hinerv-a-m_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/uvg-hinerv-a-m_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/models/uvg-hinerv-a-s_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/uvg-hinerv-a-s_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/models/uvg-hinerv-b-l_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/uvg-hinerv-b-l_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/models/uvg-hinerv-b-m_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/uvg-hinerv-b-m_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/models/uvg-hinerv-b-s_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/uvg-hinerv-b-s_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/models/uvg-hinerv-l_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/uvg-hinerv-l_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/models/uvg-hinerv-m_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/uvg-hinerv-m_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/models/uvg-hinerv-s_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/uvg-hinerv-s_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/models/uvg-hinerv-xl_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/uvg-hinerv-xl_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/models/uvg-hinerv-xxl_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/models/uvg-hinerv-xxl_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/train/hinerv_1280x720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/train/hinerv_1280x720.txt -------------------------------------------------------------------------------- /cfgs/train/hinerv_1920x1080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/train/hinerv_1920x1080.txt -------------------------------------------------------------------------------- /cfgs/train/hinerv_1920x1080_1200e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/train/hinerv_1920x1080_1200e.txt -------------------------------------------------------------------------------- /cfgs/train/hinerv_1920x1080_150e_no-compress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/train/hinerv_1920x1080_150e_no-compress.txt -------------------------------------------------------------------------------- /cfgs/train/hinerv_1920x1080_37e_no-compress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/train/hinerv_1920x1080_37e_no-compress.txt -------------------------------------------------------------------------------- /cfgs/train/hinerv_1920x1080_480x360.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/train/hinerv_1920x1080_480x360.txt -------------------------------------------------------------------------------- /cfgs/train/hinerv_1920x1080_600e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/train/hinerv_1920x1080_600e.txt -------------------------------------------------------------------------------- /cfgs/train/hinerv_1920x1080_75e_no-compress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/cfgs/train/hinerv_1920x1080_75e_no-compress.txt -------------------------------------------------------------------------------- /compression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/compression/__init__.py -------------------------------------------------------------------------------- /compression/codec_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/compression/codec_utils.py -------------------------------------------------------------------------------- /compression/prune_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/compression/prune_utils.py -------------------------------------------------------------------------------- /compression/quant_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/compression/quant_utils.py -------------------------------------------------------------------------------- /compression/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/compression/utils.py -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/datasets.py -------------------------------------------------------------------------------- /hinerv_compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/hinerv_compress.py -------------------------------------------------------------------------------- /hinerv_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/hinerv_main.py -------------------------------------------------------------------------------- /hinerv_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/hinerv_tasks.py -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/losses.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/models/encoding.py -------------------------------------------------------------------------------- /models/hinerv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/models/hinerv.py -------------------------------------------------------------------------------- /models/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/models/layers.py -------------------------------------------------------------------------------- /models/patch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/models/patch_utils.py -------------------------------------------------------------------------------- /models/upsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/models/upsample.py -------------------------------------------------------------------------------- /models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/models/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/new/uvg_results.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/results/new/uvg_results.xlsx -------------------------------------------------------------------------------- /results/original/mcljcv_results.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/results/original/mcljcv_results.xlsx -------------------------------------------------------------------------------- /results/original/uvg_results.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/results/original/uvg_results.xlsx -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmkx/HiNeRV/HEAD/utils.py --------------------------------------------------------------------------------