Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,38 +1,38 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
|
| 15 |
-
|
| 16 |
|
| 17 |
-
|
| 18 |
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
|
| 31 |
|
| 32 |
-
|
| 33 |
|
| 34 |
-
|
| 35 |
-
|
| 36 |
########################################################################################################
|
| 37 |
|
| 38 |
import torch
|
|
@@ -84,16 +84,17 @@ def app():
|
|
| 84 |
with col1:
|
| 85 |
user_input = st.text_area('Enter text','', height=300)
|
| 86 |
|
| 87 |
-
paraphraseNo = st.slider('Number of Parapharases',1,10,2)
|
| 88 |
if st.button('Paraphrase'):
|
| 89 |
with st.spinner(text="This may take a moment..."):
|
| 90 |
-
|
|
|
|
| 91 |
|
| 92 |
#with spacer:
|
| 93 |
|
| 94 |
with col2:
|
| 95 |
for x, element in enumerate(output):
|
| 96 |
-
user_output = st.text_area(label="", value=output
|
| 97 |
|
| 98 |
# st.markdown(
|
| 99 |
# '''<style>
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from transformers import PegasusForConditionalGeneration, PegasusTokenizer
|
| 3 |
|
| 4 |
+
model_name = 'tuner007/pegasus_paraphrase'
|
| 5 |
+
torch_device = 'cuda' if torch.cuda.is_available() else 'cpu'
|
| 6 |
+
tokenizer = PegasusTokenizer.from_pretrained(model_name)
|
| 7 |
+
model = PegasusForConditionalGeneration.from_pretrained(model_name).to(torch_device)
|
| 8 |
|
| 9 |
+
def get_response(input_text,num_return_sequences):
|
| 10 |
+
batch = tokenizer.prepare_seq2seq_batch([input_text],truncation=True,padding='longest',max_length=60, return_tensors="pt").to(torch_device)
|
| 11 |
+
translated = model.generate(**batch,max_length=60,num_beams=10, num_return_sequences=num_return_sequences, temperature=1.5)
|
| 12 |
+
tgt_text = tokenizer.batch_decode(translated, skip_special_tokens=True)
|
| 13 |
+
return tgt_text
|
| 14 |
|
| 15 |
+
from sentence_splitter import SentenceSplitter, split_text_into_sentences
|
| 16 |
|
| 17 |
+
splitter = SentenceSplitter(language='en')
|
| 18 |
|
| 19 |
+
def paraphraze(text):
|
| 20 |
+
sentence_list = splitter.split(text)
|
| 21 |
+
paraphrase = []
|
| 22 |
|
| 23 |
+
for i in sentence_list:
|
| 24 |
+
a = get_response(i,1)
|
| 25 |
+
paraphrase.append(a)
|
| 26 |
+
paraphrase2 = [' '.join(x) for x in paraphrase]
|
| 27 |
+
paraphrase3 = [' '.join(x for x in paraphrase2) ]
|
| 28 |
+
paraphrased_text = str(paraphrase3).strip('[]').strip("'")
|
| 29 |
+
return paraphrased_text
|
| 30 |
|
| 31 |
|
| 32 |
+
def summarize(text):
|
| 33 |
|
| 34 |
+
paraphrased_text = paraphraze(text)
|
| 35 |
+
return paraphrased_text
|
| 36 |
########################################################################################################
|
| 37 |
|
| 38 |
import torch
|
|
|
|
| 84 |
with col1:
|
| 85 |
user_input = st.text_area('Enter text','', height=300)
|
| 86 |
|
| 87 |
+
#paraphraseNo = st.slider('Number of Parapharases',1,10,2)
|
| 88 |
if st.button('Paraphrase'):
|
| 89 |
with st.spinner(text="This may take a moment..."):
|
| 90 |
+
|
| 91 |
+
output = summarize(user_input)
|
| 92 |
|
| 93 |
#with spacer:
|
| 94 |
|
| 95 |
with col2:
|
| 96 |
for x, element in enumerate(output):
|
| 97 |
+
user_output = st.text_area(label="", value=output, height=200 )
|
| 98 |
|
| 99 |
# st.markdown(
|
| 100 |
# '''<style>
|