eybro commited on
Commit
c9fa560
·
verified ·
1 Parent(s): 97220bf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -70,7 +70,7 @@ def inference(image):
70
  print(im["label"], im["timestamp"])
71
 
72
  result_image = get_image(top4[0])
73
- result = result_image['label'] + str(result_image['timestamp'])
74
 
75
  return result
76
 
 
70
  print(im["label"], im["timestamp"])
71
 
72
  result_image = get_image(top4[0])
73
+ result = f"{result_image['label']} {result_image['timestamp']}"
74
 
75
  return result
76