Spaces:
Running
Running
Update index.html
Browse files- index.html +1 -1
index.html
CHANGED
@@ -36,7 +36,7 @@ pipe = await pipeline('text-generation', 'Xenova/LaMini-Cerebras-590M')
|
|
36 |
async def generate(text):
|
37 |
return await pipe(text, {"temperature": 2.0, "max_new_tokens": 50, "repetition_penalty": 1.5})
|
38 |
|
39 |
-
demo = gr.Interface(generate, gr.Textbox(label="Initial Prompt"), gr.JSON(label="Generated Text"), examples=["I was walking in a nice neighborhood the other day ", "I'm an evil penguin and I", "It wasn't a bad film but"])
|
40 |
demo.launch()
|
41 |
</gradio-file>
|
42 |
|
|
|
36 |
async def generate(text):
|
37 |
return await pipe(text, {"temperature": 2.0, "max_new_tokens": 50, "repetition_penalty": 1.5})
|
38 |
|
39 |
+
demo = gr.Interface(generate, gr.Textbox(label="Initial Prompt"), gr.JSON(label="Generated Text"), examples=["I was walking in a nice neighborhood the other day ", "I'm an evil penguin and I", "It wasn't a bad film but"], theme=gr.themes.Soft())
|
40 |
demo.launch()
|
41 |
</gradio-file>
|
42 |
|