vishnun commited on
Commit
a074b00
1 Parent(s): 4abbfb2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,7 +2,7 @@ import streamlit as st
2
  from transformers import T5ForConditionalGeneration, AutoTokenizer
3
 
4
  st.title("SpellCorrectorT5")
5
- st.markdown('SpellCorrectorT5 is a fine-tuned version of **pre-trained t5-small model** modelled on randomly selected 50000 sentences modified by [imputing random noises/errors](random_noiser.py) and trained using transformers. It not only looks for _spelling errors but also looks for the semantics_ in the sentence and suggest other possible words for the incorrect word.')
6
  ttokenizer = AutoTokenizer.from_pretrained("./")
7
  tmodel = T5ForConditionalGeneration.from_pretrained('./')
8
 
 
2
  from transformers import T5ForConditionalGeneration, AutoTokenizer
3
 
4
  st.title("SpellCorrectorT5")
5
+ st.markdown('SpellCorrectorT5 is a fine-tuned version of **pre-trained t5-small model** modelled on randomly selected 50000 sentences modified by [imputing random noises/errors](./random_noiser.py) and trained using transformers. It not only looks for _spelling errors but also looks for the semantics_ in the sentence and suggest other possible words for the incorrect word.')
6
  ttokenizer = AutoTokenizer.from_pretrained("./")
7
  tmodel = T5ForConditionalGeneration.from_pretrained('./')
8