akhaliq HF staff commited on
Commit
2f4304c
·
1 Parent(s): 4cd5ed9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -67,5 +67,5 @@ def inference(img):
67
 
68
  title="EfficientNet-Lite4"
69
  description="EfficientNet-Lite 4 is the largest variant and most accurate of the set of EfficientNet-Lite model. It is an integer-only quantized model that produces the highest accuracy of all of the EfficientNet models. It achieves 80.4% ImageNet top-1 accuracy, while still running in real-time (e.g. 30ms/image) on a Pixel 4 CPU."
70
-
71
- gr.Interface(inference,gr.inputs.Image(type="filepath"),"label",title=title,description=description).launch()
 
67
 
68
  title="EfficientNet-Lite4"
69
  description="EfficientNet-Lite 4 is the largest variant and most accurate of the set of EfficientNet-Lite model. It is an integer-only quantized model that produces the highest accuracy of all of the EfficientNet models. It achieves 80.4% ImageNet top-1 accuracy, while still running in real-time (e.g. 30ms/image) on a Pixel 4 CPU."
70
+ examples=[['catonnx.jpg']]
71
+ gr.Interface(inference,gr.inputs.Image(type="filepath"),"label",title=title,description=description,examples=examples).launch()