skoneru commited on
Commit
0b9e8d4
·
1 Parent(s): 9310dc4

Initial test

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -3,8 +3,9 @@ import sys
3
  import requests
4
  import gradio as gr
5
 
6
- def translate(input_txt,prefix,suffix,beam_size,top_k):
7
- output_txt = "this is test"
 
8
  return output_txt
9
 
10
  prefix= "<s>[INST] <<SYS>>\nYou are a professional translator from English to German. You translate the sentences to only Formal German even if the English sentence is Informal.\n<</SYS>>\nEnglish: "
@@ -12,7 +13,7 @@ prefix= "<s>[INST] <<SYS>>\nYou are a professional translator from English to Ge
12
  suffix = "\nGerman: "
13
  iface = gr.Interface(
14
  fn=translate,
15
- inputs=[gr.Textbox(lines=1, placeholder="Enter your English Sentences that you want to translate", label="English Sentence"), gr.Textbox(lines=5, placeholder=prefix,label="Prefix for LLM Prompt - Change here to control"),gr.Textbox(lines=5, placeholder=suffix, label="DONT CHANGE!!"),gr.Slider(label='Select beam size',value=5,minimum=1,maximum=5,step=1),gr.Slider(label="TopK for rescoring",value=5,minimum=5,maximum=10,step=1)],
16
  outputs=gr.Textbox(lines=1,placeholder="Enter your inputs and click submit!",label="LLM Guided NLLB German Translation"),
17
  title="Ensemble Decoding with NLLB 3.3B and LLama2 13B for Guided Decoding",
18
  )
 
3
  import requests
4
  import gradio as gr
5
 
6
+ def translate(input_txt,prefix,suffix,num_beams,topk,beta):
7
+ dictToSend = {'input':input_txt,'prefix':prefix,'suffix':suffix,'num_beams':num_beams,'alpha': (1-beta),'beta':beta,'topk':topk}
8
+ res = requests.post('http://i13hpc68:8099/generate', json=dictToSend)
9
  return output_txt
10
 
11
  prefix= "<s>[INST] <<SYS>>\nYou are a professional translator from English to German. You translate the sentences to only Formal German even if the English sentence is Informal.\n<</SYS>>\nEnglish: "
 
13
  suffix = "\nGerman: "
14
  iface = gr.Interface(
15
  fn=translate,
16
+ inputs=[gr.Textbox(lines=1, placeholder="Enter your English Sentences that you want to translate", label="English Sentence"), gr.Textbox(lines=5, placeholder=prefix,label="Prefix for LLM Prompt - Replace formal and informal here to control Formality Levle"),gr.Textbox(lines=2, placeholder=suffix, label="DONT CHANGE!!"),gr.Slider(label='Select beam size',value=5,minimum=1,maximum=5,step=1),gr.Slider(label="TopK for rescoring",value=5,minimum=5,maximum=10,step=1),gr.Slider(label="LLM weight when rescoring, 1 for complete LLM scoring, 0 for NLLB Decoding without LLM",value=1,minimum=0,maximum=1,step=0.1)],
17
  outputs=gr.Textbox(lines=1,placeholder="Enter your inputs and click submit!",label="LLM Guided NLLB German Translation"),
18
  title="Ensemble Decoding with NLLB 3.3B and LLama2 13B for Guided Decoding",
19
  )