Spaces:
Sleeping
Sleeping
update UI
Browse files
app.py
CHANGED
@@ -15,8 +15,12 @@ def save_uploaded_file(uploaded_file):
|
|
15 |
st.title('Paper2Slides')
|
16 |
|
17 |
st.subheader('Upload paper in pdf format')
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
20 |
'Please select one of the parsing method.',
|
21 |
('monkey', 'x2d', 'lxml'))
|
22 |
|
|
|
15 |
st.title('Paper2Slides')
|
16 |
|
17 |
st.subheader('Upload paper in pdf format')
|
18 |
+
|
19 |
+
col1, col2 = st.columns(2)
|
20 |
+
with col1:
|
21 |
+
uploaded_file = st.file_uploader("Choose a file")
|
22 |
+
with col2:
|
23 |
+
option = st.selectbox(
|
24 |
'Please select one of the parsing method.',
|
25 |
('monkey', 'x2d', 'lxml'))
|
26 |
|