VishalD1234 commited on
Commit
73a629c
·
verified ·
1 Parent(s): d20dd63

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -18
app.py CHANGED
@@ -166,40 +166,46 @@ def predict(prompt, video_data, temperature, model, tokenizer):
166
 
167
  return response
168
 
169
- def get_analysis_prompt(step_number):
170
  """Constructs the prompt for analyzing delay reasons based on the selected step."""
171
- step_info = get_step_info(step_number)
172
-
173
- if "Error" in step_info:
174
- return step_info["Error"]
175
-
176
- step_name = step_info["Name"]
177
- standard_time = step_info["Standard Time"]
178
- video_substeps = step_info["Video_substeps_expected"]
 
 
 
 
 
 
 
 
 
 
 
179
 
180
- return f"""
181
- You are an AI expert system specializing in manufacturing process analysis.
182
- Analyze the video for Step {step_number}: {step_name}, with a standard time of {standard_time}.
183
- Observe for deviations in the expected substeps: {video_substeps}.
184
- Provide delay analysis based on visual evidence, such as worker actions, material handling, or equipment delays.
185
- """
186
 
187
  model, tokenizer = load_model()
188
 
189
  def inference(video, step_number):
190
- """Analyzes video to predict possible issues based on the manufacturing step."""
191
  try:
192
  if not video:
193
  return "Please upload a video first."
194
 
195
- prompt = get_analysis_prompt(step_number)
 
196
  temperature = 0.3
197
  response = predict(prompt, video, temperature, model, tokenizer)
198
 
199
  return response
200
  except Exception as e:
201
  return f"An error occurred during analysis: {str(e)}"
202
-
203
  def create_interface():
204
  """Creates the Gradio interface for the Manufacturing Analysis System."""
205
  with gr.Blocks() as demo:
 
166
 
167
  return response
168
 
169
+ def get_analysis_prompt(step_number, possible_reasons):
170
  """Constructs the prompt for analyzing delay reasons based on the selected step."""
171
+ return f"""You are an AI expert system specialized in analyzing manufacturing processes and identifying production delays in tire manufacturing. Your role is to accurately classify delay reasons based on visual evidence from production line footage.
172
+ Task Context:
173
+ You are analyzing video footage from Step {step_number} of a tire manufacturing process where a delay has been detected. Your task is to determine the most likely cause of the delay from the following possible reasons:
174
+ {', '.join(possible_reasons)}
175
+
176
+ {get_step_info(step_number)}
177
+
178
+ Required Analysis:
179
+ Carefully observe the video for visual cues indicating production interruption.
180
+ If no person is visible in any of the frames, the reason probably might be due to his absence.
181
+ If a person is visible in the video and is observed touching and modifying the layers of the tire, it means there is a issue with tyre being patched hence he is repairing it.
182
+ Compare observed evidence against each possible delay reason.
183
+ Select the most likely reason based on visual evidence.
184
+ Please provide your analysis in the following format:
185
+ 1. Selected Reason: [State the most likely reason from the given options]
186
+ 2. Visual Evidence: [Describe specific visual cues that support your selection]
187
+ 3. Reasoning: [Explain why this reason best matches the observed evidence]
188
+ 4. Alternative Analysis: [Brief explanation of why other possible reasons are less likely]
189
+ Important: Base your analysis solely on visual evidence from the video. Focus on concrete, observable details rather than assumptions. Clearly state if no person or specific activity is observed."""
190
 
 
 
 
 
 
 
191
 
192
  model, tokenizer = load_model()
193
 
194
  def inference(video, step_number):
195
+ """Analyzes video to predict the most likely cause of delay in the selected manufacturing step."""
196
  try:
197
  if not video:
198
  return "Please upload a video first."
199
 
200
+ possible_reasons = DELAY_REASONS[step_number]
201
+ prompt = get_analysis_prompt(step_number, possible_reasons)
202
  temperature = 0.3
203
  response = predict(prompt, video, temperature, model, tokenizer)
204
 
205
  return response
206
  except Exception as e:
207
  return f"An error occurred during analysis: {str(e)}"
208
+
209
  def create_interface():
210
  """Creates the Gradio interface for the Manufacturing Analysis System."""
211
  with gr.Blocks() as demo: