Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -5,20 +5,42 @@ import torch
|
|
5 |
# Load the sentence-transformer model
|
6 |
model = SentenceTransformer('all-MiniLM-L6-v2')
|
7 |
|
8 |
-
#
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
-
# Encode the
|
|
|
|
|
13 |
corpus_embeddings = model.encode(corpus, convert_to_tensor=True)
|
14 |
|
15 |
-
# Function to retrieve relevant
|
16 |
def retrieve(query):
|
17 |
query_embedding = model.encode(query, convert_to_tensor=True)
|
18 |
cosine_scores = util.pytorch_cos_sim(query_embedding, corpus_embeddings)[0]
|
19 |
-
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
# Create Gradio interface
|
23 |
-
iface = gr.Interface(fn=retrieve, inputs="text", outputs="text", live=True)
|
|
|
|
|
24 |
iface.launch()
|
|
|
5 |
# Load the sentence-transformer model
|
6 |
model = SentenceTransformer('all-MiniLM-L6-v2')
|
7 |
|
8 |
+
# Expanded FAQ dataset with more diverse responses
|
9 |
+
faq_data = [
|
10 |
+
("What is Hugging Face?", "Hugging Face is a company specializing in AI and machine learning, known for their open-source models and datasets."),
|
11 |
+
("How does Hugging Face help in AI?", "Hugging Face provides tools, libraries, and pre-trained models to make machine learning easier and more accessible."),
|
12 |
+
("What is machine learning?", "Machine learning is a subset of AI that enables computers to learn from data and improve over time without being explicitly programmed."),
|
13 |
+
("What is a transformer model?", "A transformer model is a deep learning model that uses attention mechanisms to process and generate sequences of data, such as text or speech."),
|
14 |
+
("Can I use Hugging Face models in production?", "Yes, Hugging Face provides tools and frameworks like `transformers` for deploying models into production environments."),
|
15 |
+
("What is RAG?", "Retrieval-Augmented Generation (RAG) combines pre-trained models with retrieval systems to answer questions using both the knowledge from the model and external documents."),
|
16 |
+
("What is AI?", "Artificial Intelligence (AI) is the simulation of human intelligence in machines, enabling them to perform tasks that typically require human cognition."),
|
17 |
+
("Tell me a joke", "Why don't skeletons fight each other? They don’t have the guts!"),
|
18 |
+
("What is the capital of France?", "The capital of France is Paris."),
|
19 |
+
("How can I contact support?", "You can contact support via our website or email for assistance."),
|
20 |
+
("What's the weather like today?", "Sorry, I don't have access to real-time data, but I suggest checking a weather app for the latest updates.")
|
21 |
+
]
|
22 |
|
23 |
+
# Encode the FAQ dataset
|
24 |
+
corpus = [item[0] for item in faq_data] # Questions only
|
25 |
+
answers = {item[0]: item[1] for item in faq_data} # Map questions to their answers
|
26 |
corpus_embeddings = model.encode(corpus, convert_to_tensor=True)
|
27 |
|
28 |
+
# Function to retrieve the most relevant FAQ based on user query
|
29 |
def retrieve(query):
|
30 |
query_embedding = model.encode(query, convert_to_tensor=True)
|
31 |
cosine_scores = util.pytorch_cos_sim(query_embedding, corpus_embeddings)[0]
|
32 |
+
top_result_idx = torch.argmax(cosine_scores)
|
33 |
+
top_score = cosine_scores[top_result_idx].item()
|
34 |
+
|
35 |
+
# Threshold for similarity score
|
36 |
+
if top_score < 0.5: # Adjust threshold as needed
|
37 |
+
return "I didn’t understand that. Could you try asking something else?"
|
38 |
+
|
39 |
+
# Return the most relevant answer based on the query
|
40 |
+
return answers[corpus[top_result_idx]]
|
41 |
|
42 |
# Create Gradio interface
|
43 |
+
iface = gr.Interface(fn=retrieve, inputs="text", outputs="text", live=True, title="RAG AI Bot", description="Ask me anything related to Hugging Face or general knowledge!")
|
44 |
+
|
45 |
+
# Launch the Gradio interface
|
46 |
iface.launch()
|