wakeupmh commited on
Commit
218a8a7
·
1 Parent(s): 7842508

refactor: improve response

Browse files
Files changed (1) hide show
  1. app.py +35 -24
app.py CHANGED
@@ -167,24 +167,21 @@ def generate_answer(question, context, max_length=512):
167
  if model is None or tokenizer is None:
168
  return "Error: Could not load the model. Please try again later."
169
 
170
- if not context or len(context.strip()) == 0:
171
- return "No relevant autism research papers found to answer your question. Please try rephrasing your question."
172
-
173
  # Format the context as a structured query
174
- prompt = f"""Based on the following autism research papers, provide a detailed answer:
175
-
176
- Research Context:
177
- {context}
178
 
179
  Question: {question}
180
 
181
- Instructions: Provide a comprehensive answer that covers:
182
- 1. Main findings about autism from the research
183
- 2. Research methods used in autism studies
184
- 3. Clinical implications for autism treatment
185
- 4. Limitations of the autism studies
 
 
 
186
 
187
- If the research papers don't directly address autism and the question, explain what information is missing."""
188
 
189
  try:
190
  # Generate response
@@ -194,7 +191,7 @@ If the research papers don't directly address autism and the question, explain w
194
  outputs = model.generate(
195
  **inputs,
196
  max_length=max_length,
197
- min_length=100,
198
  num_beams=4,
199
  length_penalty=1.5,
200
  temperature=0.7,
@@ -204,15 +201,29 @@ If the research papers don't directly address autism and the question, explain w
204
 
205
  response = tokenizer.decode(outputs[0], skip_special_tokens=True)
206
 
207
- # If response is too short or empty, provide a fallback message
208
- if len(response.strip()) < 50:
209
- return """I apologize, but I couldn't find specific information about autism in the research papers provided.
210
- This might be because:
211
- 1. The research papers don't directly address autism
212
- 2. The context needs more specific information about autism
213
- 3. The question might need to be more focused on autism-specific aspects
214
-
215
- Please try asking a more specific question about autism."""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216
 
217
  # Format the response for better readability
218
  formatted_response = response.replace(". ", ".\n").replace("• ", "\n• ")
@@ -231,7 +242,7 @@ This app searches through scientific papers to answer your questions about autis
231
  For best results, be specific in your questions.
232
  """)
233
 
234
- query = st.text_input("Please ask me anything about autism >")
235
 
236
  if query:
237
  with st.status("Searching for answers...") as status:
 
167
  if model is None or tokenizer is None:
168
  return "Error: Could not load the model. Please try again later."
169
 
 
 
 
170
  # Format the context as a structured query
171
+ prompt = f"""You are an expert in autism research. Provide a comprehensive answer about autism, incorporating both general knowledge and specific research findings when available.
 
 
 
172
 
173
  Question: {question}
174
 
175
+ Recent Research Context:
176
+ {context}
177
+
178
+ Instructions: Provide a detailed response that:
179
+ 1. Starts with a general overview of the topic as it relates to autism
180
+ 2. Incorporates specific findings from the provided research papers when relevant
181
+ 3. Discusses practical implications for individuals with autism and their families
182
+ 4. Mentions any limitations in current understanding
183
 
184
+ If the research papers don't directly address the question, focus on providing general, well-established information about autism while noting what specific research would be helpful."""
185
 
186
  try:
187
  # Generate response
 
191
  outputs = model.generate(
192
  **inputs,
193
  max_length=max_length,
194
+ min_length=150, # Increased minimum length for more comprehensive answers
195
  num_beams=4,
196
  length_penalty=1.5,
197
  temperature=0.7,
 
201
 
202
  response = tokenizer.decode(outputs[0], skip_special_tokens=True)
203
 
204
+ # If response is too short or empty, provide a general overview
205
+ if len(response.strip()) < 100:
206
+ return f"""Here's what we know about autism in relation to your question about {question}:
207
+
208
+ 1. General Understanding:
209
+ - Autism Spectrum Disorder (ASD) is a complex developmental condition
210
+ - It affects how a person communicates, learns, and interacts with others
211
+ - Each person with autism has unique strengths and challenges
212
+
213
+ 2. Key Aspects:
214
+ - Communication and social interaction
215
+ - Repetitive behaviors and specific interests
216
+ - Sensory sensitivities
217
+ - Early intervention is important
218
+
219
+ 3. Current Research:
220
+ While the provided research papers don't directly address your specific question, researchers are actively studying various aspects of autism to better understand its causes, characteristics, and effective interventions.
221
+
222
+ For more specific information, try asking about:
223
+ - Specific symptoms or characteristics
224
+ - Diagnostic processes
225
+ - Treatment approaches
226
+ - Current research in specific areas"""
227
 
228
  # Format the response for better readability
229
  formatted_response = response.replace(". ", ".\n").replace("• ", "\n• ")
 
242
  For best results, be specific in your questions.
243
  """)
244
 
245
+ query = st.text_input("Please ask me anything about autism ")
246
 
247
  if query:
248
  with st.status("Searching for answers...") as status: