Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -55,10 +55,8 @@ def generate_text(prompt, context, max_length=2100):
|
|
55 |
max_new_tokens=max_length
|
56 |
generation_config = GenerationConfig(
|
57 |
max_new_tokens=max_new_tokens,
|
58 |
-
temperature=0.32,
|
59 |
-
|
60 |
-
top_k=50, # 45
|
61 |
-
repetition_penalty=1.04, #1.1
|
62 |
do_sample=True,
|
63 |
)
|
64 |
outputs = model.generate(generation_config=generation_config, input_ids=inputs, stopping_criteria=stopping_criteria_list,)
|
@@ -66,7 +64,7 @@ def generate_text(prompt, context, max_length=2100):
|
|
66 |
|
67 |
def mostrar_respuesta(pregunta, contexto):
|
68 |
try:
|
69 |
-
res= generate_text(pregunta, contexto, max_length=
|
70 |
return str(res)
|
71 |
except Exception as e:
|
72 |
return str(e)
|
@@ -76,7 +74,7 @@ mis_ejemplos = [
|
|
76 |
["¿Dime el valor nutricional de la tortilla de patatas?", "Cocinero español"],
|
77 |
["¿Dime el valor nutricional del ceviche?", "Cocinero peruano"],
|
78 |
["¿Dime el valor nutricional de los frijoles?", "Cocinero de México"],
|
79 |
-
["¿Dime el valor nutricional de la tortilla de
|
80 |
|
81 |
]
|
82 |
|
|
|
55 |
max_new_tokens=max_length
|
56 |
generation_config = GenerationConfig(
|
57 |
max_new_tokens=max_new_tokens,
|
58 |
+
temperature=0.32, #top_p=0.9, top_k=50, # 45
|
59 |
+
repetition_penalty=1.3, # 1.04, #1.1
|
|
|
|
|
60 |
do_sample=True,
|
61 |
)
|
62 |
outputs = model.generate(generation_config=generation_config, input_ids=inputs, stopping_criteria=stopping_criteria_list,)
|
|
|
64 |
|
65 |
def mostrar_respuesta(pregunta, contexto):
|
66 |
try:
|
67 |
+
res= generate_text(pregunta, contexto, max_length=700)
|
68 |
return str(res)
|
69 |
except Exception as e:
|
70 |
return str(e)
|
|
|
74 |
["¿Dime el valor nutricional de la tortilla de patatas?", "Cocinero español"],
|
75 |
["¿Dime el valor nutricional del ceviche?", "Cocinero peruano"],
|
76 |
["¿Dime el valor nutricional de los frijoles?", "Cocinero de México"],
|
77 |
+
["¿Dime el valor nutricional de la tortilla de patatas?", "Cocinero español"],
|
78 |
|
79 |
]
|
80 |
|