alexpap commited on
Commit
9ca293b
1 Parent(s): 2f088d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -1,4 +1,10 @@
1
  import streamlit as st
2
 
 
 
 
 
 
 
3
  x = st.slider('Select a value')
4
  st.write(x, 'squared is', x * x)
1
  import streamlit as st
2
 
3
+ st.title('Question-Answering NLU')
4
+
5
+ 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
  x = st.slider('Select a value')
10
  st.write(x, 'squared is', x * x)