-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
47 lines (37 loc) · 1.49 KB
/
app.py
File metadata and controls
47 lines (37 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import gradio as gr
from qdrant_client import QdrantClient
from transformers import ClapModel, ClapProcessor
# PARAMETERS #######################################################################################
COLLECTION_NAME='demo_db'
# Loading the Qdrant DB in local ###################################################################
client = QdrantClient("localhost", port=6333)
print("[INFO] Client created...")
# loading the model
print("[INFO] Loading the model...")
model_name = "laion/larger_clap_general"
model = ClapModel.from_pretrained(model_name)
processor = ClapProcessor.from_pretrained(model_name)
# Gradio Interface #################################################################################
max_results = 10
def sound_search(query):
text_inputs = processor(text=query, return_tensors="pt")
text_embed = model.get_text_features(**text_inputs)[0]
hits = client.search(
collection_name=COLLECTION_NAME,
query_vector=text_embed,
limit=max_results,
)
return [
gr.Audio(
hit.payload['audio_path'],
label=f"style: {hit.payload['style']} -- score: {hit.score}")
for hit in hits
]
with gr.Blocks() as demo:
gr.Markdown(
f"""# Sound search database - {COLLECTION_NAME}"""
)
inp = gr.Textbox(placeholder="What sound are you looking for ?")
out = [gr.Audio(label=f"{x}") for x in range(max_results)] # Necessary to have different objs
inp.change(sound_search, inp, out)
demo.launch()