Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import pipeline, Conversation
|
2 |
+
import gradio as gr
|
3 |
+
import scipy
|
4 |
+
from diffusers import DiffusionPipeline
|
5 |
+
|
6 |
+
# Model initialization
|
7 |
+
chatbot = pipeline(model="facebook/blenderbot-400M-distill")
|
8 |
+
synthesiser = pipeline("text-to-audio", "facebook/musicgen-small")
|
9 |
+
ldm = DiffusionPipeline.from_pretrained("CompVis/ldm-text2im-large-256")
|
10 |
+
|
11 |
+
# Declare array
|
12 |
+
message_list = []
|
13 |
+
response_list = []
|
14 |
+
|
15 |
+
# Libray for Chatbot
|
16 |
+
def vanilla_chatbot(message):
|
17 |
+
conversation = Conversation(text=message, past_user_inputs=message_list,
|
18 |
+
generated_responses=response_list)
|
19 |
+
bot = chatbot(conversation.messages[0]['content']) # working code
|
20 |
+
return bot[-1]['generated_text']
|
21 |
+
#Libray for music
|
22 |
+
def generate_music(Prompt):
|
23 |
+
music = synthesiser(Prompt, forward_params={"do_sample": True, "max_new_tokens":100})
|
24 |
+
rate = music["sampling_rate"]
|
25 |
+
mus = music["audio"][0].reshape(-1)
|
26 |
+
return rate,mus
|
27 |
+
#Libray fo image
|
28 |
+
def generate_image(Prompt):
|
29 |
+
images = ldm([Prompt], num_inference_steps=50, eta=.3, guidance_scale=6)
|
30 |
+
return images.images[0]
|
31 |
+
|
32 |
+
def process_input(Prompt,choice):
|
33 |
+
if choice == "Chat":
|
34 |
+
return vanilla_chatbot(text),None,None
|
35 |
+
elif choice == 'Music':
|
36 |
+
rate,audio = generate_music(Prompt)
|
37 |
+
return None, (rate,audio), None
|
38 |
+
else:
|
39 |
+
return None , None , generate_image(Prompt)
|
40 |
+
|
41 |
+
# demo=gr.Blocks()
|
42 |
+
# with demo:
|
43 |
+
# with gr.Row():
|
44 |
+
# text_input = gr.Textbox()
|
45 |
+
# choice = gr.Radio(choices=["Chat","Music","Image"])
|
46 |
+
|
47 |
+
# with gr.Row():
|
48 |
+
# chatbot_output = gr.Textbox()
|
49 |
+
# music_output =gr.Audio()
|
50 |
+
# image_output =gr.Image()
|
51 |
+
|
52 |
+
# submit_btn = gr.Button("Generate")
|
53 |
+
|
54 |
+
# submit_btn.click(fn=process_input,inputs=[text_input,choice],outputs=[chatbot_output,music_output,image_output])
|
55 |
+
|
56 |
+
# demo.launch(debug=True)
|
57 |
+
|
58 |
+
|
59 |
+
demo =gr.Interface(
|
60 |
+
fn=process_input,
|
61 |
+
inputs=[gr.Textbox(),gr.Radio(["Chat","Music","Image"])],
|
62 |
+
outputs = [gr.Textbox(),gr.Audio(),gr.Image()],
|
63 |
+
# outputs =["text","audio","image"]
|
64 |
+
title="Multimodal Assistant"
|
65 |
+
|
66 |
+
)
|
67 |
+
|
68 |
+
demo.launch(debug=True)
|
69 |
+
|
70 |
+
# demo_chatbot = gr.ChatInterface(vanilla_chatbot, title="Mashdemy Chatbot",
|
71 |
+
# description="Enter text to start chatting.")
|
72 |
+
# demo_chatbot.launch(share = True)
|
73 |
+
|
74 |
+
# inf = gr.Interface(generate_music,title = "Mashdemy Demo Music Generator App", description = """Type in the kind
|
75 |
+
# of music you prefer and click submit""", inputs =["text"], outputs=["audio"],
|
76 |
+
# examples = ["lo-fi music with a soothing melody", "pop music"])
|
77 |
+
# inf.launch(share = True
|
78 |
+
|
79 |
+
|
80 |
+
# interface = gr.Interface(fn = generate_image,inputs = "text",outputs = "image",
|
81 |
+
# title = "Mashdemy Demo Image Generator App", description = "Type in a text and click submit to generate an image:",
|
82 |
+
# examples = ["a clown reading a book", "a cat using a laptop", "An elephant on grass"])
|
83 |
+
# #Launch application
|
84 |
+
# interface.launch(share = True)
|