mboushaba commited on
Commit
d1d5efe
·
verified ·
1 Parent(s): 37448c1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -54,7 +54,7 @@ def process(raw_image, prompt):
54
  print("start...")
55
  start_time = time.time()
56
  memory_usage = get_model_memory_footprint(model)
57
- model_response = call_model(raw_image = raw_image, text_input = raw_image)
58
  end_time = time.time()
59
  execution_time = end_time - start_time
60
  execution_time_min = round((execution_time / 60), 2)
 
54
  print("start...")
55
  start_time = time.time()
56
  memory_usage = get_model_memory_footprint(model)
57
+ model_response = call_model(raw_image = raw_image, text_input = prompt)
58
  end_time = time.time()
59
  execution_time = end_time - start_time
60
  execution_time_min = round((execution_time / 60), 2)