Update app.py
Browse files
app.py
CHANGED
@@ -2,10 +2,10 @@ import torch
|
|
2 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
3 |
import gradio as gr
|
4 |
|
5 |
-
title = """Welcome to
|
6 |
description = """
|
7 |
-
You can use this Space to test out the current model [ahxt/LiteLlama-460M-1T](https://huggingface.co/ahxt/LiteLlama-460M-1T) You can also use
|
8 |
-
Join us : TeamTonic is always making cool demos! Join our active
|
9 |
"""
|
10 |
model_path = 'ahxt/LiteLlama-460M-1T'
|
11 |
model = AutoModelForCausalLM.from_pretrained(model_path)
|
@@ -18,7 +18,7 @@ model.to(device)
|
|
18 |
def generate_text(question):
|
19 |
prompt = f'Q: {question}\nA: '
|
20 |
input_ids = tokenizer(prompt, return_tensors="pt").input_ids.to(device)
|
21 |
-
tokens = model.generate(input_ids, max_length=
|
22 |
response = tokenizer.decode(tokens[0], skip_special_tokens=True)
|
23 |
return response.split('\nA: ')[-1]
|
24 |
|
@@ -26,12 +26,11 @@ def generate_text(question):
|
|
26 |
with gr.Blocks() as iface:
|
27 |
gr.Markdown(title)
|
28 |
gr.Markdown(description)
|
|
|
29 |
with gr.Row():
|
30 |
-
question = gr.Textbox(label="
|
31 |
submit_button = gr.Button("Submit")
|
32 |
-
output = gr.Textbox(label="Model Response")
|
33 |
|
34 |
submit_button.click(fn=generate_text, inputs=question, outputs=output)
|
35 |
|
36 |
-
# Launch the interface
|
37 |
iface.launch()
|
|
|
2 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
3 |
import gradio as gr
|
4 |
|
5 |
+
title = """🙋🏻♂️Welcome to🌟Tonic's 🦙LiteLlama📳On-Device Chat!"""
|
6 |
description = """
|
7 |
+
You can use this Space to test out the current model [ahxt/LiteLlama-460M-1T](https://huggingface.co/ahxt/LiteLlama-460M-1T) You can also use 🦙LiteLlama📳On-Device Chat by cloning this space. Simply click here: <a style="display:inline-block" href="https://huggingface.co/spaces/Tonic1/Litellama?duplicate=true"><img src="https://img.shields.io/badge/-Duplicate%20Space-blue?labelColor=white&style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAP5JREFUOE+lk7FqAkEURY+ltunEgFXS2sZGIbXfEPdLlnxJyDdYB62sbbUKpLbVNhyYFzbrrA74YJlh9r079973psed0cvUD4A+4HoCjsA85X0Dfn/RBLBgBDxnQPfAEJgBY+A9gALA4tcbamSzS4xq4FOQAJgCDwV2CPKV8tZAJcAjMMkUe1vX+U+SMhfAJEHasQIWmXNN3abzDwHUrgcRGmYcgKe0bxrblHEB4E/pndMazNpSZGcsZdBlYJcEL9Afo75molJyM2FxmPgmgPqlWNLGfwZGG6UiyEvLzHYDmoPkDDiNm9JR9uboiONcBXrpY1qmgs21x1QwyZcpvxt9NS09PlsPAAAAAElFTkSuQmCC&logoWidth=14" alt="Duplicate Space"></a></h3>
|
8 |
+
Join us : 🌟TeamTonic is always making cool demos! Join our active🛠️builder's community on👻Discord: [Discord](https://discord.gg/nXx5wbX9) On🤗Huggingface: [TeamTonic](https://huggingface.co/TeamTonic) & [MultiTransformer](https://huggingface.co/MultiTransformer) On Github: [Polytonic](https://github.com/tonic-ai) & contribute to 🌟[PolyGPT](https://github.com/tonic-ai/polygpt-alpha)
|
9 |
"""
|
10 |
model_path = 'ahxt/LiteLlama-460M-1T'
|
11 |
model = AutoModelForCausalLM.from_pretrained(model_path)
|
|
|
18 |
def generate_text(question):
|
19 |
prompt = f'Q: {question}\nA: '
|
20 |
input_ids = tokenizer(prompt, return_tensors="pt").input_ids.to(device)
|
21 |
+
tokens = model.generate(input_ids, max_length=350, pad_token_id=tokenizer.eos_token_id)
|
22 |
response = tokenizer.decode(tokens[0], skip_special_tokens=True)
|
23 |
return response.split('\nA: ')[-1]
|
24 |
|
|
|
26 |
with gr.Blocks() as iface:
|
27 |
gr.Markdown(title)
|
28 |
gr.Markdown(description)
|
29 |
+
output = gr.Textbox(label="🦙LiteLlama")
|
30 |
with gr.Row():
|
31 |
+
question = gr.Textbox(label="Speak to LiteLlama", lines=2, placeholder="What are the best Japanese gardens in Paris?")
|
32 |
submit_button = gr.Button("Submit")
|
|
|
33 |
|
34 |
submit_button.click(fn=generate_text, inputs=question, outputs=output)
|
35 |
|
|
|
36 |
iface.launch()
|