deep-learning-analytics commited on
Commit
02a0fc5
·
1 Parent(s): a4d835d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -1,5 +1,4 @@
1
- import streamlit as st
2
- text = st.text_area('Enter your text here!')
3
  ### Run Model
4
  from transformers import T5ForConditionalGeneration, T5Tokenizer
5
  import torch
@@ -13,6 +12,5 @@ def correct_grammar(input_text,num_return_sequences=1):
13
  tgt_text = tokenizer.batch_decode(translated, skip_special_tokens=True)
14
  return tgt_text
15
 
16
- if text:
17
- result = correct_grammar(text)
18
- st.json(result)
 
1
+ import gradio as gr
 
2
  ### Run Model
3
  from transformers import T5ForConditionalGeneration, T5Tokenizer
4
  import torch
 
12
  tgt_text = tokenizer.batch_decode(translated, skip_special_tokens=True)
13
  return tgt_text
14
 
15
+ iface = gr.Interface(fn=correct_grammar, inputs=[gr.inputs.Textbox(lines=5)],outputs=["text"])
16
+ iface.launch(inline=False, share=True)