HTML iframe 要素
埋め込み時に表示できるのは public レポートのみです。

Confluence

Notion

Gradio
gr.HTML 要素を使用すると、W&B Reports を Gradio Apps に埋め込み、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 レポートを Notion または HTML の iframe 要素に直接埋め込みます。



gr.HTML 要素を使用すると、W&B Reports を Gradio Apps に埋め込み、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()