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

def show_message():
    message = """
    <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>
    """
    return message

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