Modfiededition commited on
Commit
6d3e914
·
1 Parent(s): 63deb6d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -16,9 +16,10 @@ model = load_model()
16
 
17
 
18
  #prompts
19
- st.title("Writing Assistant for you 🦄")
 
20
  image = Image.open('new_grammar.jpg')
21
- st.image(image, caption='Sunrise by the mountains')
22
  st.subheader("Some examples: ")
23
  example_1 = st.button("I am write on AI")
24
  example_2 = st.button("This sentence has, bads grammar mistake!")
 
16
 
17
 
18
  #prompts
19
+ st.title("Writing Assistant for you ✍️")
20
+ st.subheader("This writing assistant detects and corrects grammatical mistakes for you! This assitant uses T5-base model fine-tuned on jfleg dataset.")
21
  image = Image.open('new_grammar.jpg')
22
+ st.image(image, caption='Image Credit: https://abrc.org.au/wp-content/uploads/2020/12/Grammar-checker.jpg')
23
  st.subheader("Some examples: ")
24
  example_1 = st.button("I am write on AI")
25
  example_2 = st.button("This sentence has, bads grammar mistake!")