Home

Awesome

E-NeRV: Expedite Neural Video Representation with Disentangled Spatial-Temporal Context (ECCV 2022)

Paper

Zizhang Li, Mengmeng Wang, Huaijin Pi, Kechun Xu, Jianbiao Mei, Yong Liu

This is the official implementation of the paper "E-NeRV: Expedite Neural Video Representation with Disentangled Spatial-Temporal Context".

Abstract

Recently, the image-wise implicit neural representation of videos, NeRV, has gained popularity for its promising results and swift speed compared to regular pixel-wise implicit representations. However, the redundant parameters within the network structure can cause a large model size when scaling up for desirable performance. The key reason of this phenomenon is the coupled formulation of NeRV, which outputs the spatial and temporal information of video frames directly from the frame index input. In this paper, we propose E-NeRV, which dramatically expedites NeRV by decomposing the image-wise implicit neural representation into separate spatial and temporal context. Under the guidance of this new formulation, our model greatly reduces the redundant model parameters, while retaining the representation ability. We experimentally find that our method can improve the performance to a large extent with fewer parameters, resulting in a more than 8$\times$ faster speed on convergence

Method overview

<img src=./assets/method.png width="800" />

Get started

We run with Python 3.8, you can set up a conda environment with all dependencies like so:

conda create -n enerv python=3.8
conda activate enerv
pip install -r requirements.txt 

Data

The paper's main experiments were conducted on:

Training

Training experiments

For now, we provide training and evaluation on original NeRV and our E-NeRV, by running following command with different configs and specified EXP_NAME:

bash scripts/run.sh ./cfgs/E-NeRV-bunny.yaml EXP_NAME 29500

The logs and other outputs will be automaically saved to the output directory ./outputs/EXP_NAME

Acknowledgement

Thanks to Hao Chen for his excellent work and implementation NeRV.

Contact

If you have any questions, please feel free to email the authors.