File size: 311 Bytes
c8eb842 c6595fc 1f53b57 c6595fc c8eb842 c6595fc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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()
|