etweedy commited on
Commit
2ea6ff9
1 Parent(s): ddadb1a

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -129,7 +129,7 @@ with tabs[3]:
129
 
130
  with intro_container:
131
  # Intro text
132
- st.header('RoBERTa Q&A model')
133
  st.markdown('''
134
  This app demonstrates the answer-retrieval capabilities of a fine-tuned RoBERTa (Robustly optimized Bidirectional Encoder Representations from Transformers) model.
135
  ''')
@@ -166,7 +166,7 @@ with intro_container:
166
  ```
167
  ''')
168
  st.markdown('''
169
- Use the menu on the left side to navigate between different app components:
170
  1. A basic Q&A tool which allows the user to ask the model to search a user-provided context paragraph for the answer to a user-provided question.
171
  2. A user-guided Wiki Q&A tool which allows the user to search for one or more Wikipedia pages and ask the model to search those pages for the answer to a user-provided question.
172
  3. An automated Wiki Q&A tool which asks the model to perform retrieve its own Wikipedia pages in order to answer the user-provided question.
 
129
 
130
  with intro_container:
131
  # Intro text
132
+ st.header('RoBERTa Q&A with Wiki tools')
133
  st.markdown('''
134
  This app demonstrates the answer-retrieval capabilities of a fine-tuned RoBERTa (Robustly optimized Bidirectional Encoder Representations from Transformers) model.
135
  ''')
 
166
  ```
167
  ''')
168
  st.markdown('''
169
+ Use the menu above to navigate between tabs containing several tools:
170
  1. A basic Q&A tool which allows the user to ask the model to search a user-provided context paragraph for the answer to a user-provided question.
171
  2. A user-guided Wiki Q&A tool which allows the user to search for one or more Wikipedia pages and ask the model to search those pages for the answer to a user-provided question.
172
  3. An automated Wiki Q&A tool which asks the model to perform retrieve its own Wikipedia pages in order to answer the user-provided question.