Update app.py
Browse files
app.py
CHANGED
@@ -65,8 +65,8 @@ mod.bind(for_training=False, data_shapes=[('data', (1,3,224,224))],
|
|
65 |
label_shapes=mod._label_shapes)
|
66 |
mod.set_params(arg_params, aux_params, allow_missing=True, allow_extra=True)
|
67 |
|
68 |
-
title="
|
69 |
-
description="
|
70 |
|
71 |
examples=[['catonnx.jpg']]
|
72 |
gr.Interface(predict,gr.inputs.Image(type='filepath'),"label",title=title,description=description,examples=examples).launch(enable_queue=True)
|
|
|
65 |
label_shapes=mod._label_shapes)
|
66 |
mod.set_params(arg_params, aux_params, allow_missing=True, allow_extra=True)
|
67 |
|
68 |
+
title="VGG"
|
69 |
+
description="VGG models perform image classification - they take images as input and classify the major object in the image into a set of pre-defined classes. They are trained on ImageNet dataset which contains images from 1000 classes. VGG models provide very high accuracies but at the cost of increased model sizes. They are ideal for cases when high accuracy of classification is essential and there are limited constraints on model sizes."
|
70 |
|
71 |
examples=[['catonnx.jpg']]
|
72 |
gr.Interface(predict,gr.inputs.Image(type='filepath'),"label",title=title,description=description,examples=examples).launch(enable_queue=True)
|