Spaces:
Runtime error
Runtime error
Commit
·
612e17b
1
Parent(s):
d33b093
add requirements.txt
Browse files- .idea/.gitignore +10 -0
- app.py +8 -6
.idea/.gitignore
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Default ignored files
|
2 |
+
/shelf/
|
3 |
+
/workspace.xml
|
4 |
+
# Editor-based HTTP Client requests
|
5 |
+
/httpRequests/
|
6 |
+
# Datasource local storage ignored files
|
7 |
+
/dataSources/
|
8 |
+
/dataSources.local.xml
|
9 |
+
|
10 |
+
*.xml
|
app.py
CHANGED
@@ -65,12 +65,14 @@ def main() -> None:
|
|
65 |
|
66 |
st.header("Input")
|
67 |
|
68 |
-
sentences_length = st.number_input(
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
|
|
|
|
74 |
sample_choice = st.selectbox(
|
75 |
label="Select a sample:",
|
76 |
options=get_list_files()
|
|
|
65 |
|
66 |
st.header("Input")
|
67 |
|
68 |
+
# sentences_length = st.number_input(
|
69 |
+
# label="How many senetences to be extracted:",
|
70 |
+
# min_value=5,
|
71 |
+
# max_value=15,
|
72 |
+
# step=1,
|
73 |
+
# value=st.session_state.sentence_length
|
74 |
+
# )
|
75 |
+
|
76 |
sample_choice = st.selectbox(
|
77 |
label="Select a sample:",
|
78 |
options=get_list_files()
|