File size: 298 Bytes
c8eb842 7653d41 1f53b57 e0fe2c9 1f53b57 c6595fc c8eb842 c6595fc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import gradio as gr
MARKDOWN = r"""# TRL jobs
```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()
|