akhaliq HF staff commited on
Commit
09692c2
1 Parent(s): 3d4a5e7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -66,8 +66,8 @@ mod.bind(for_training=False, data_shapes=[('data_0', (1,3,224,224))],
66
  label_shapes=mod._label_shapes)
67
  mod.set_params(arg_params, aux_params, allow_missing=True, allow_extra=True)
68
 
69
- title="SqueezeNet"
70
- description="SqueezeNet is a small CNN which achieves AlexNet level accuracy on ImageNet with 50x fewer parameters. SqueezeNet requires less communication across servers during distributed training, less bandwidth to export a new model from the cloud to an autonomous car and more feasible to deploy on FPGAs and other hardware with limited memory."
71
 
72
  examples=[['catonnx.jpg']]
73
  gr.Interface(predict,gr.inputs.Image(type='filepath'),"label",title=title,description=description,examples=examples).launch(enable_queue=True)
 
66
  label_shapes=mod._label_shapes)
67
  mod.set_params(arg_params, aux_params, allow_missing=True, allow_extra=True)
68
 
69
+ title="AlexNet"
70
+ description="AlexNet is the name of a convolutional neural network for classification, which competed in the ImageNet Large Scale Visual Recognition Challenge in 2012."
71
 
72
  examples=[['catonnx.jpg']]
73
  gr.Interface(predict,gr.inputs.Image(type='filepath'),"label",title=title,description=description,examples=examples).launch(enable_queue=True)