train / app.py
qgallouedec's picture
qgallouedec HF Staff
new app
c6595fc
raw
history blame
187 Bytes
import gradio as gr
MARKDOWN = """# TRL jobs
Start typing below to see the output.
"""
with gr.Blocks() as demo:
gr.Markdown(MARKDOWN)
if __name__ == "__main__":
demo.launch()