Musawir19 commited on
Commit
bc9fa5a
·
verified ·
1 Parent(s): 4fe7b38

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
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, ans in zip(data["Questions"], data["Answers"]):
240
  if question.lower() in q.lower():
241
- return ans
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")