Spaces:
Runtime error
Runtime error
File size: 2,030 Bytes
2d9073f 0b9e8d4 2d9073f 5c307a4 2d9073f 0b9e8d4 2d9073f 5c307a4 2d9073f |
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 |
import os
import sys
import requests
import gradio as gr
def translate(input_txt,prefix,suffix,num_beams,topk,beta):
dictToSend = {'input':input_txt,'prefix':prefix,'suffix':suffix,'num_beams':num_beams,'alpha': (1-beta),'beta':beta,'topk':topk}
res = requests.post('http://i13hpc68:8099/generate', json=dictToSend)
return output_txt
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: "
#self.prefix = "Translate from English to German:\nEnglish: "
suffix = "\nGerman: "
example_formal = ["Where are you going today?",prefix,suffix,5,5,1]
prefix= "<s>[INST] <<SYS>>\nYou are a professional translator from English to German. You translate the sentences to only Informal German even if the English sentence is Formal.\n<</SYS>>\nEnglish: "
#self.prefix = "Translate from English to German:\nEnglish: "
suffix = "\nGerman: "
example_informal = ["Where are you going today?",prefix,suffix,5,5,1]
iface = gr.Interface(
fn=translate,
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)],
outputs=gr.Textbox(lines=1,placeholder="Enter your inputs and click submit!",label="LLM Guided NLLB German Translation"),
examples=[example_formal,example_informal]
title="Ensemble Decoding with NLLB 3.3B and LLama2 13B for Guided Decoding",
)
iface.launch(share=True)
|