train / app.py
qgallouedec's picture
qgallouedec HF Staff
command in readme
1f53b57
raw
history blame
311 Bytes
import gradio as gr
MARKDOWN = """# TRL jobs
Start typing below to see the output.
```sh
hfjobs run --flavor a10g-small hf.co/spaces/trl-lib/train sft --model Qwen/Qwen3-4B-Base --dataset trl-lib/tldr
```
"""
with gr.Blocks() as demo:
gr.Markdown(MARKDOWN)
if __name__ == "__main__":
demo.launch()