Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -15,9 +15,12 @@ shroom_generator = pipeline("text-generation", model=AutoModelWithLMHead.from_pr
|
|
15 |
top_k=50,
|
16 |
top_p=0.95,)
|
17 |
|
18 |
-
def generator(inizia_la_storia = '
|
19 |
shroom_result = shroom_generator(inizia_la_storia, max_length=520)
|
20 |
return shroom_result[0]["generated_text"]
|
21 |
|
22 |
-
|
|
|
|
|
|
|
23 |
iface.launch()
|
|
|
15 |
top_k=50,
|
16 |
top_p=0.95,)
|
17 |
|
18 |
+
def generator(inizia_la_storia = ''):
|
19 |
shroom_result = shroom_generator(inizia_la_storia, max_length=520)
|
20 |
return shroom_result[0]["generated_text"]
|
21 |
|
22 |
+
|
23 |
+
blog_inputs = gr.inputs.Textbox(lines=1, placeholder="Ingredienti: un litro di latte, mezzo kilo di farina, due uova, 250 grammi di zucchero.")
|
24 |
+
|
25 |
+
iface = gr.Interface(fn=generator, inputs=blog_inputs, outputs="text")
|
26 |
iface.launch()
|