added tests for new outputs

This commit is contained in:
Abubakar Abid 2019-03-18 05:38:10 -07:00
parent f89d84c6d8
commit 2d02c51751
2 changed files with 21 additions and 7 deletions

View File

@ -34,11 +34,11 @@
},
{
"cell_type": "code",
"execution_count": 121,
"execution_count": 128,
"metadata": {},
"outputs": [],
"source": [
"inp = gradio.inputs.ImageUpload(image_width=299, image_height=299, num_channels=3, aspect_ratio=1.0)\n",
"inp = gradio.inputs.ImageUpload(image_width=299, image_height=299, num_channels=3, aspect_ratio=False)\n",
"out = gradio.outputs.Label(label_names='imagenet1000', max_label_length=8, num_top_classes=5)\n",
"\n",
"io = gradio.Interface(inputs=inp, \n",
@ -49,7 +49,7 @@
},
{
"cell_type": "code",
"execution_count": 123,
"execution_count": 129,
"metadata": {
"scrolled": false
},
@ -59,7 +59,7 @@
"output_type": "stream",
"text": [
"NOTE: Gradio is in beta stage, please report all bugs to: a12d@stanford.edu\n",
"Model is running locally at: http://localhost:7895/interface.html\n",
"Model is running locally at: http://localhost:7899/interface.html\n",
"To create a public link, set `share=True` in the argument to `launch()`\n"
]
}

File diff suppressed because one or more lines are too long