Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -234,11 +234,11 @@ data = {
|
|
234 |
# Step 5: Define a Question-Answering Model (Hugging Face)
|
235 |
qa_model = pipeline("question-answering", model="deepset/roberta-base-squad2")
|
236 |
|
237 |
-
# Helper function for answering dataset questions
|
238 |
def get_predefined_answer(question):
|
239 |
-
for q,
|
240 |
if question.lower() in q.lower():
|
241 |
-
return
|
242 |
return "Sorry, I don't have an answer for that. Please ask a different question."
|
243 |
|
244 |
# Define answer query function with dataset context
|
@@ -252,6 +252,7 @@ def answer_query(question):
|
|
252 |
response = qa_model(question=question, context=context)
|
253 |
return response['answer']
|
254 |
|
|
|
255 |
# Step 6: Create Gradio Interface
|
256 |
with gr.Blocks(theme=gr.themes.Monochrome()) as app:
|
257 |
gr.Markdown("## Government Boys Degree College Daulatpur")
|
|
|
234 |
# Step 5: Define a Question-Answering Model (Hugging Face)
|
235 |
qa_model = pipeline("question-answering", model="deepset/roberta-base-squad2")
|
236 |
|
237 |
+
# Helper function for answering dataset questions
|
238 |
def get_predefined_answer(question):
|
239 |
+
for q, name in zip(data["Questions"], data["Name"]): # Use "Name" for predefined answers
|
240 |
if question.lower() in q.lower():
|
241 |
+
return name
|
242 |
return "Sorry, I don't have an answer for that. Please ask a different question."
|
243 |
|
244 |
# Define answer query function with dataset context
|
|
|
252 |
response = qa_model(question=question, context=context)
|
253 |
return response['answer']
|
254 |
|
255 |
+
|
256 |
# Step 6: Create Gradio Interface
|
257 |
with gr.Blocks(theme=gr.themes.Monochrome()) as app:
|
258 |
gr.Markdown("## Government Boys Degree College Daulatpur")
|