Changes to W&B guide (#3153)

* changes to guide

* changlog

* changlog fix credit to scott
This commit is contained in:
Ali Abdalla 2023-02-08 13:29:37 -08:00 committed by GitHub
parent ba67036df8
commit 190687e716
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 1 deletions

View File

@ -7,7 +7,7 @@ No changes to highlight.
No changes to highlight.
## Documentation Changes:
No changes to highlight.
* Changes to W&B guide by [@scottire](https://github.com/scottire) in [PR 3153](https://github.com/gradio-app/gradio/pull/3153)
## Testing and Infrastructure Changes:
No changes to highlight.

View File

@ -255,6 +255,29 @@ Let's get started!
<gradio-app space="akhaliq/JoJoGAN"> <gradio-app>
```
7. (Optional) Embed W&B plots in your Gradio App
It's also possible to embed W&B plots within Gradio apps. To do so, you can create a W&B Report of your plots and
embed them within your Gradio app within a `gr.HTML` block.
The Report will need to be public and you will need to wrap the URL within an iFrame like this:
```python
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_url = 'https://wandb.ai/_scott/pytorch-sweeps-demo/reports/loss-22-10-07-16-00-17---VmlldzoyNzU2NzAx'
report = wandb_report(report_url)
demo.launch(share=True)
```
## Conclusion
We hope you enjoyed this brief demo of embedding a Gradio demo to a W&B report! Thanks for making it to the end. To recap: