meta-interpolation icon indicating copy to clipboard operation
meta-interpolation copied to clipboard

Source code for CVPR 2020 paper "Scene-Adaptive Video Frame Interpolation via Meta-Learning"

Results 4 meta-interpolation issues
Sort by recently updated
recently updated
newest added

Before all, thank you for sharing this wonderful code :) I'd like to ask why the inner loop learning rate is multiplied by 10 in the function 'update_adamax'. As an...

Hello, Thank your for your great work! The code about DAIN has been updated in your repo. I wonder that could you share the url of the pretrained model of...

Hi. Congrats for the great work :) I am wondering if the "line 431" in "meta_learning_system.py" would result in GPU memory leak? Essentially you are appending task-wise meta loss, which...

``` param_dict = dict() if params is not None: param_dict = extract_top_level_dict(current_dict=params) cur_output_rectified = self.rectifyNet(rectify_input, params=param_dict['rectifyNet']) + cur_output else: cur_output_rectified = self.rectifyNet(rectify_input) + cur_output ``` As the code above, the...