HTML iframe 요소
임베드한 경우 public 리포트만 조회할 수 있습니다.

Confluence

Notion

Gradio
gr.HTML 요소를 사용하여 Gradio 앱에 W&B Reports를 삽입하고, 이를 Hugging Face Spaces에서 사용할 수 있습니다.
W&B 리포트를 Notion에 직접 임베드하거나 HTML IFrame 요소를 사용해 임베드합니다.



gr.HTML 요소를 사용하여 Gradio 앱에 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()