liberte / app.py
artificialguybr's picture
Update app.py
42e9500
raw
history blame
515 Bytes
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()