alistairmcleay commited on
Commit
05c3251
β€’
1 Parent(s): db90364

Small fixes to UI

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -122,15 +122,16 @@ def self_play():
122
  block = gr.Blocks()
123
 
124
  with block:
125
- gr.Markdown("#πŸ’¬ Jointly Optimized Task-Oriented Dialogue System And User Simulator")
126
  gr.Markdown(
127
  "Created by [Alistair McLeay](https://alistairmcleay.com) for the [Masters in Machine Learning & Machine Intelligence at Cambridge University](https://www.mlmi.eng.cam.ac.uk/). <br/>\
128
  Thank you to [Professor Bill Byrne](https://sites.google.com/view/bill-byrne/home) for his supervision and guidance. <br/> \
129
  Thank you to [Andy Tseng](https://github.com/andy194673) and [Alex Coca](https://github.com/alexcoca) who provided code and guidance."
130
  )
131
  gr.Markdown(
132
- "*Both Systems are trained on the [MultiWOZ dataset](https://github.com/budzianowski/multiwoz). <br/> \
133
- Supported domains are 1. πŸš† Train, 2. 🏨 Hotel, 3. πŸš• Taxi, 4. πŸš“ Police, 5. 🏣 Restaurant, 6. πŸ—Ώ Attraction, 7. πŸ₯ Hospital.*"
 
134
  )
135
  with gr.Tabs():
136
  with gr.TabItem("Dialogue System"):
@@ -171,7 +172,7 @@ with block:
171
 
172
  gr.Markdown("## System Architecture Overview")
173
  gr.Markdown(
174
- "![System Architecture](https://huggingface.co/spaces/alistairmcleay/cambridge-masters-project/tree/main/system_architecture.png)"
175
  )
176
 
177
  ds_button.click(ds_chatbot, ds_input_text, ds_response)
 
122
  block = gr.Blocks()
123
 
124
  with block:
125
+ gr.Markdown("# πŸ’¬ Jointly Optimized Task-Oriented Dialogue System And User Simulator")
126
  gr.Markdown(
127
  "Created by [Alistair McLeay](https://alistairmcleay.com) for the [Masters in Machine Learning & Machine Intelligence at Cambridge University](https://www.mlmi.eng.cam.ac.uk/). <br/>\
128
  Thank you to [Professor Bill Byrne](https://sites.google.com/view/bill-byrne/home) for his supervision and guidance. <br/> \
129
  Thank you to [Andy Tseng](https://github.com/andy194673) and [Alex Coca](https://github.com/alexcoca) who provided code and guidance."
130
  )
131
  gr.Markdown(
132
+ "Both Systems are trained on the [MultiWOZ dataset](https://github.com/budzianowski/multiwoz). <br/> \
133
+ Supported domains are: <br> \
134
+ 1. πŸš† Train, 2. 🏨 Hotel, 3. πŸš• Taxi, 4. πŸš“ Police, 5. 🏣 Restaurant, 6. πŸ—Ώ Attraction, 7. πŸ₯ Hospital."
135
  )
136
  with gr.Tabs():
137
  with gr.TabItem("Dialogue System"):
 
172
 
173
  gr.Markdown("## System Architecture Overview")
174
  gr.Markdown(
175
+ "![System Architecture](https://huggingface.co/spaces/alistairmcleay/cambridge-masters-project/blob/main/system_architecture.png)"
176
  )
177
 
178
  ds_button.click(ds_chatbot, ds_input_text, ds_response)