johvir commited on
Commit
1695330
·
1 Parent(s): acac516

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -1,11 +1,9 @@
1
  import streamlit as st
2
- from transformers import T5ForConditionalGeneration, T5Tokenizer
3
 
4
  sentence = st.text_area("enter some text")
5
 
6
  if sentence:
7
-
8
-
9
  st.json(sentence)
10
 
11
 
 
1
  import streamlit as st
2
+ #from transformers import T5ForConditionalGeneration, T5Tokenizer
3
 
4
  sentence = st.text_area("enter some text")
5
 
6
  if sentence:
 
 
7
  st.json(sentence)
8
 
9