Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ def generate(
|
|
27 |
temperature=temperature, top_k=top_k, top_p=top_p, repetition_penalty=1.10)
|
28 |
return outputs[0]["generated_text"]
|
29 |
|
30 |
-
model_choices = ["
|
31 |
# What at the best options?
|
32 |
g = gr.Interface(
|
33 |
fn=generate,
|
@@ -41,7 +41,7 @@ g = gr.Interface(
|
|
41 |
],
|
42 |
outputs=[gr.Textbox(lines=10, label="Output")],
|
43 |
title="Locutusque's Language Models",
|
44 |
-
description="Try out Locutusque's language models here! Credit goes to Mediocreatmybest for this space. You may also find some experimental preview models that have not been made public here.",
|
45 |
concurrency_limit=1
|
46 |
)
|
47 |
|
|
|
27 |
temperature=temperature, top_k=top_k, top_p=top_p, repetition_penalty=1.10)
|
28 |
return outputs[0]["generated_text"]
|
29 |
|
30 |
+
model_choices = ["aloobun/Reyna-Mini-1.8B-v0.1", "aloobun/Reyna-Mini-1.8B-v0.2", "M4-ai/TinyMistral-6x248M-Instruct", "Locutusque/Hercules-1.0-Mistral-7B", "Locutusque/Hercules-2.0-Mistral-7B", "Locutusque/Hercules-2.0-Qwen1.5-0.5B", "Locutusque/Hercules-2.0-Qwen1.5-1.8B", "Locutusque/Hercules-2.5-Mistral-7B", "Locutusque/Hercules-2.5-Qwen1.5-14B"]
|
31 |
# What at the best options?
|
32 |
g = gr.Interface(
|
33 |
fn=generate,
|
|
|
41 |
],
|
42 |
outputs=[gr.Textbox(lines=10, label="Output")],
|
43 |
title="Locutusque's Language Models",
|
44 |
+
description="Try out Locutusque's (or other's) language models here! Credit goes to Mediocreatmybest for this space. You may also find some experimental preview models that have not been made public here.",
|
45 |
concurrency_limit=1
|
46 |
)
|
47 |
|