File size: 713 Bytes
c24a5b8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import gradio as gr
import random

_TITLE = '''
# Sparc3D: Next-Gen High-Resolution 3D Model Generation
'''

_DESCRIPTION = '''
### Powered by Math Magic AI Research, NTU & ICL | [Arxiv](https://arxiv.org/pdf/2505.14521v2) | [Project Page](https://lizhihao6.github.io/Sparc3D/)
'''



html = '''
<!DOCTYPE html>
<html>
<body>
    <iframe id="myIframe" width="100%" height="1200" frameborder="0"></iframe>
</body>
</html>
'''


script = '''
function createGradio() {
    document.getElementById("myIframe").src = ['https://3dserver.zaohaowu.com/'];
}
'''


with gr.Blocks(js=script) as demo:
    gr.Markdown(_TITLE)
    gr.Markdown(_DESCRIPTION)
    gr.HTML(html)
    

if __name__ == "__main__":
    demo.launch()