Simon Salmon commited on
Commit
42269a9
·
1 Parent(s): 3bae5d7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -21
app.py CHANGED
@@ -8,26 +8,11 @@ model = PegasusForConditionalGeneration.from_pretrained(model_name)
8
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
9
  model = model.to(device)
10
 
11
- def translate_to_english(model, tokenizer, text):
12
- translated_text = []
13
- text = "paraphrase: " + text + " </s>"
14
- encoding = tokenizer.encode_plus(text,pad_to_max_length=True, return_tensors="pt")
15
- input_ids, attention_masks = encoding["input_ids"].to(device), encoding["attention_mask"].to(device)
16
- beam_outputs = model.generate(
17
- input_ids=input_ids, attention_mask=attention_masks,
18
- do_sample=True,
19
- max_length=256,
20
- top_k=120,
21
- temperature=1.5,
22
- top_p=0.98,
23
- early_stopping=True,
24
- num_return_sequences=10
25
- )
26
- for beam_output in beam_outputs:
27
- sent = tokenizer.decode(beam_output, skip_special_tokens=True,clean_up_tokenization_spaces=True)
28
- print(sent)
29
- translated_text.append(sent)
30
- return translated_text
31
 
32
  st.title("Auto Translate (To English)")
33
  text = st.text_input("Okay")
@@ -35,5 +20,5 @@ st.text("What you wrote: ")
35
  st.write(text)
36
  st.text("English Translation: ")
37
  if text:
38
- translated_text = translate_to_english(model, tokenizer, text)
39
  st.write(translated_text if translated_text else "No translation found")
 
8
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
9
  model = model.to(device)
10
 
11
+ def get_response(text):
12
+ batch = tokenizer([input_text],truncation=True,padding='longest',max_length=60, return_tensors="pt").to(device)
13
+ translated = model.generate(**batch,max_length=60, do_sample=True, num_return_sequences=10, temperature=1.5)
14
+ tgt_text = tokenizer.batch_decode(translated, skip_special_tokens=True)
15
+ return tgt_text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  st.title("Auto Translate (To English)")
18
  text = st.text_input("Okay")
 
20
  st.write(text)
21
  st.text("English Translation: ")
22
  if text:
23
+ translated_text = translate_to_english(text)
24
  st.write(translated_text if translated_text else "No translation found")