File size: 1,554 Bytes
c24a5b8
 
 
 
 
 
 
 
ec5df42
 
 
 
 
 
01acf49
ec5df42
 
c24a5b8
 
ec5df42
33eb073
 
 
 
 
 
 
 
 
 
 
 
2de894d
c24a5b8
 
 
 
 
c062fff
c24a5b8
 
 
 
 
 
4e58905
c12b43c
4e58905
 
 
c24a5b8
 
 
 
6b6f8cb
4e58905
7f45c69
c24a5b8
 
ec5df42
 
 
33eb073
ee0acd6
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import gradio as gr
import random

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

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

_INFO1 = '''
### We are sorry to announce that our backend services have been attacked. 
'''

_INFO2 = '''
### Please experience Sparc3D on the official site: https://hitem3d.ai for more secure and stable 3D model generation services!
'''


_CITE_ = r"""
---
📝 **Citation**
If you find our work useful for your research or applications, please cite using this bibtex:
```bibtex
@article{li2025sparc3d,
  title   = {Sparc3D: Sparse Representation and Construction for High-Resolution 3D Shapes Modeling},
  author  = {Li, Zhihao and Wang, Yufei and Zheng, Heliang and Luo, Yihao and Wen, Bihan},
  journal = {arXiv preprint arXiv:2505.14521},
  year    = {2025}
}
```
"""

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

script = '''
function createGradio() {
    const urls = [
        "https://3dserver.hitems.ai/"
    ];
    const randomIndex = Math.floor(Math.random() * urls.length);
    document.getElementById("myIframe").src = urls[randomIndex];
}
'''




with gr.Blocks() as demo:
    gr.Markdown(_TITLE)
    gr.Markdown(_DESCRIPTION)
#    gr.HTML(html)
    gr.Markdown(_INFO1)
    gr.Markdown(_INFO2)
    gr.Markdown(_CITE_)

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