File size: 2,715 Bytes
cd77bb2
7062b81
 
 
cd77bb2
 
7062b81
 
 
 
 
 
 
 
 
47120d2
2bbc3ee
 
47120d2
a47eef7
7062b81
 
2bbc3ee
7062b81
128a7e4
 
 
7062b81
313b8f8
7062b81
2bbc3ee
7062b81
cd77bb2
1051949
cd77bb2
1051949
cd77bb2
 
7062b81
cd77bb2
 
7062b81
 
 
 
 
cd77bb2
 
 
 
 
 
 
 
 
 
 
7062b81
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import os
import gradio as gr
from demo_img import demo_img
from demo_vid import demo_vid

SPACE_ID = os.getenv('SPACE_ID')
with gr.Blocks(css='style.css') as demo:
    gr.HTML(
        """
        <div style="text-align: center; max-width: 1200px; margin: 20px auto;">
        <h1 style="font-weight: 900; font-size: 2rem; margin: 0rem">
            AMT: All-Pairs Multi-Field Transforms for Efficient Frame Interpolation
        </h1>
        <h2 style="font-weight: 450; font-size: 1rem; margin: 0rem">
        <a href="https://paper99.github.io" style="color:blue;">Zhen Li</a><sup>1*</sup>, 
        <a href="https://nk-cs-zzl.github.io" style="color:blue;">Zuo-Liang Zhu</a><sup>1*</sup>, 
        <a href="https://github.com/hlh981029" style="color:blue;">Ling-Hao Han</a><sup>1</sup>, 
        <a href="https://houqb.github.io" style="color:blue;">Qibin Hou</a><sup>1</sup>, 
        <a href="https://scholar.google.com/citations?user=RZLYwR0AAAAJ" style="color:blue;">Chun-Le Guo</a><sup>1</sup>, 
        <a href="https://mmcheng.net/cmm" style="color:blue;">Ming-Ming Cheng</a><sup>1</sup>, 
        </h2>
        <h2 style="font-weight: 450; font-size: 1rem; margin: 0rem">
        <sup>1</sup>Nankai University <sup>*</sup> represents the equal contribution.
        </h2>
        <h1 style="font-weight: 900; font-size: 2rem; margin: 0rem">
            CVPR 2023
        </h1>
        <h2 style="font-weight: 450; font-size: 1rem; margin: 0rem">
        [<a href="https://arxiv.org/abs/2304.09790" style="color:blue;">arXiv</a>] 
        [<a href="https://github.com/MCG-NKU/AMT" style="color:blue;">GitHub</a>]
        [<a href="https://colab.research.google.com/drive/1IeVO5BmLouhRh6fL2z_y18kgubotoaBq?usp=sharing" style="color:blue;">Colab</a>]
        </h2>
        <p>For faster inference without waiting in queue, you may duplicate the space and upgrade to GPU in settings. 
        """  
        f'<a href="https://huggingface.co/spaces/{SPACE_ID}?duplicate=true">'
        """ 
        <img style="display: inline; margin-top: 0em; margin-bottom: 0em" src="https://bit.ly/3gLdBN6" alt="Duplicate Space" /></a>
        </p>
        </div>
        """
        )

    with gr.Tab('Img2Vid'):
        demo_img()
    with gr.Tab('VFI'):
        demo_vid()
        
    gr.HTML(
        """
        <div style="text-align: center; max-width: 1200px; margin: 20px auto;">
        <h2 style="font-weight: 450; font-size: 1rem; margin: 0rem">
        Licensed under the Creative Commons Attribution-NonCommercial 4.0 International for Non-commercial use only. 
        Any commercial use should get a formal permission first.
        </h2>
        </div>
        """
        )

demo.launch(debug=False)