HTML iframe 요소
임베드하면 public Reports만 볼 수 있습니다.

Confluence

Notion

Gradio
gr.HTML 요소를 사용해 Gradio Apps에 W&B Reports를 임베드하고, 이를 Hugging Face Spaces에서 사용할 수 있습니다.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Help us improve these docs. Take our quick survey.
W&B Reports를 Notion에 직접 삽입하거나 HTML IFrame 요소를 사용해 삽입합니다.



gr.HTML 요소를 사용해 Gradio Apps에 W&B Reports를 임베드하고, 이를 Hugging Face Spaces에서 사용할 수 있습니다.
import gradio as gr
def wandb_report(url):
iframe = f'<iframe src={url} style="border:none;height:1024px;width:100%">'
return gr.HTML(iframe)
with gr.Blocks() as demo:
report = wandb_report(
"https://wandb.ai/_scott/pytorch-sweeps-demo/reports/loss-22-10-07-16-00-17---VmlldzoyNzU2NzAx"
)
demo.launch()