Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ import streamlit as st
|
|
3 |
st.title("Grammar Corrector")
|
4 |
st.write("Paste or type text, submit and the machine will attempt to correct your text's grammar.")
|
5 |
|
6 |
-
default_text = "
|
7 |
sent = st.text_area("Text", default_text, height=40)
|
8 |
num_correct_options = st.number_input('Number of Correction Options', min_value=1, max_value=3, value=1, step=1)
|
9 |
|
|
|
3 |
st.title("Grammar Corrector")
|
4 |
st.write("Paste or type text, submit and the machine will attempt to correct your text's grammar.")
|
5 |
|
6 |
+
default_text = "In conclusion,if anyone has some problem the customers must be returned."
|
7 |
sent = st.text_area("Text", default_text, height=40)
|
8 |
num_correct_options = st.number_input('Number of Correction Options', min_value=1, max_value=3, value=1, step=1)
|
9 |
|