File size: 547 Bytes
807cf27
 
42e9500
71397d5
 
 
 
 
 
 
 
807cf27
d8031ee
807cf27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr

def show_message():
    return gr.HTML(
        """
        <div style='text-align: center; font-size: 24px;'>
            <p>HF Spaces Closed Due to Lack of GPU.</p>
            <p>If you are a GPU Provider and would like to provide GPU for this HF Space in exchange for publicity, please contact us on Twitter <a href='https://twitter.com/artificialguybr'>@artificialguybr</a>.</p>
        </div>
        """
    )

iface = gr.Interface(fn=show_message, inputs=[], outputs="html", title="GPU Provider Needed")
iface.launch()