Pranomvignesh commited on
Commit
e8be427
·
1 Parent(s): d1ed39f

Optimizing the function by loading the model outside predict function

Browse files
Files changed (1) hide show
  1. app.py +1 -9
app.py CHANGED
@@ -6,11 +6,10 @@ from transformers import pipeline
6
  imageClassifier = pipeline(task="image-classification",
7
  model="PranomVignesh/Police-vs-Public")
8
 
 
9
 
10
  def predict(image):
11
- model = yolov5.load('./best.pt', device="cpu")
12
  results = model([image], size=224)
13
-
14
  predictions = imageClassifier(image)
15
  classMappings = {
16
  'police': "Police / Authorized Personnel",
@@ -23,12 +22,6 @@ def predict(image):
23
  return results.render()[0], output
24
 
25
 
26
- title = "Detecting Unauthorized Individuals with Firearms"
27
-
28
- examples = [
29
- []
30
- ]
31
-
32
  title = "Detecting Unauthorized Individuals with Firearms"
33
  description = """
34
  Try the examples at bottom to get started.
@@ -59,7 +52,6 @@ interface = gr.Interface(
59
  examples=examples,
60
  description=description,
61
  cache_examples=True,
62
- live=True,
63
  theme='huggingface'
64
  )
65
  interface.launch(debug=True, share=True, enable_queue=True)
 
6
  imageClassifier = pipeline(task="image-classification",
7
  model="PranomVignesh/Police-vs-Public")
8
 
9
+ model = yolov5.load('./best.pt', device="cpu")
10
 
11
  def predict(image):
 
12
  results = model([image], size=224)
 
13
  predictions = imageClassifier(image)
14
  classMappings = {
15
  'police': "Police / Authorized Personnel",
 
22
  return results.render()[0], output
23
 
24
 
 
 
 
 
 
 
25
  title = "Detecting Unauthorized Individuals with Firearms"
26
  description = """
27
  Try the examples at bottom to get started.
 
52
  examples=examples,
53
  description=description,
54
  cache_examples=True,
 
55
  theme='huggingface'
56
  )
57
  interface.launch(debug=True, share=True, enable_queue=True)