alexpap commited on
Commit
c544217
1 Parent(s): b735079

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -6,9 +6,10 @@ st.sidebar.title('Navigation')
6
  menu = st.sidebar.radio("", options=["Introduction", "Parsing NLU data into SQuAD 2.0", "Generating Questions", "Training",
7
  "Evaluation"], index=0)
8
 
9
- st.markdown('''
10
 
11
- ## Question Answering NLU
 
 
12
 
13
  Question Answering NLU (QANLU) is an approach that maps the NLU task into question answering,
14
  leveraging pre-trained question-answering models to perform well on few-shot settings. Instead of
6
  menu = st.sidebar.radio("", options=["Introduction", "Parsing NLU data into SQuAD 2.0", "Generating Questions", "Training",
7
  "Evaluation"], index=0)
8
 
 
9
 
10
+ if menu == "Introduction":
11
+
12
+ st.markdown('''
13
 
14
  Question Answering NLU (QANLU) is an approach that maps the NLU task into question answering,
15
  leveraging pre-trained question-answering models to perform well on few-shot settings. Instead of