Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
|
|
|
|
|
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
|