Martijn van Beers commited on
Commit
cc68b4d
1 Parent(s): 4cd84ad

Add title to block

Browse files

This sets the window/tab title in the browser.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -77,7 +77,7 @@ with open("notice.md") as fh:
77
  with open("results.md") as fh:
78
  results = fh.read()
79
 
80
- with gradio.Blocks() as iface:
81
  gradio.Markdown(desc)
82
  with gradio.Row(equal_height=True):
83
  with gradio.Column(scale=4):
 
77
  with open("results.md") as fh:
78
  results = fh.read()
79
 
80
+ with gradio.Blocks(title="Detecting stereotypes in the GPT-2 language model using CrowS-Pairs") as iface:
81
  gradio.Markdown(desc)
82
  with gradio.Row(equal_height=True):
83
  with gradio.Column(scale=4):