rdlf commited on
Commit
461c00c
·
verified ·
1 Parent(s): 7e5d3e9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -9
app.py CHANGED
@@ -6,15 +6,8 @@ pipe = pipeline("text-generation", model="somosnlp/Phi-2-LenguajeClaro", trust_r
6
  import gradio as gr
7
 
8
  def eval_text (text):
9
- new_prompt = f"""###System:
10
- Lee el siguiente texto y hazlo más claro:
11
- ###Texto:
12
-
13
- {text}
14
-
15
- ###Texto aclarado:
16
- """
17
- result = pipe(new_prompt, max_length=200)
18
  return (result[0]['generated_text'])
19
 
20
  demo = gr.Interface(fn=eval_text, inputs="text", outputs="text", title="Lenguaje Claro")
 
6
  import gradio as gr
7
 
8
  def eval_text (text):
9
+ new_prompt = f"""###System: Lee el siguiente texto y hazlo más claro: ###Texto: {text} ###Texto aclarado: """
10
+ result = pipe(new_prompt, max_length=200)
 
 
 
 
 
 
 
11
  return (result[0]['generated_text'])
12
 
13
  demo = gr.Interface(fn=eval_text, inputs="text", outputs="text", title="Lenguaje Claro")