From 3290f7e2d5421e3a3b0e2a673b41b92c043b4fdb Mon Sep 17 00:00:00 2001 From: Dawood Khan Date: Thu, 11 Jul 2019 12:57:29 -0700 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a31f78b72d..edbdac868a 100644 --- a/README.md +++ b/README.md @@ -64,25 +64,25 @@ iface = gradio.Interface(input='sketchpad', output='label', model=model, model_t iface.launch() ``` -![alt text](https://raw.githubusercontent.com/abidlabs/gradio/master/screenshots/mnist4.png) +![alt text](https://raw.githubusercontent.com/abidlabs/gradio/master/screenshots/sketchpad_interface.png) -#### Facial Emotion Detector (Input: Webcam, Output: Label) +#### Image Classifier: InceptionNet (Input: Webcam, Output: Label) ```python iface = gradio.Interface(inputs='webcam', outputs='label', model=model, model_type='keras') iface.launch() ``` -![alt text](https://raw.githubusercontent.com/abidlabs/gradio/master/screenshots/webcam_happy.png) +![alt text](https://raw.githubusercontent.com/abidlabs/gradio/master/screenshots/image_interface.png) -#### Sentiment Analysis (Input: Textbox, Output: Label) +#### Human DNA Variant Effect Prediction (Input: Textbox, Output: Label) ```python iface = gradio.Interface(inputs='textbox', outputs='label', model=model, model_type='keras') iface.launch() ``` -![alt text](https://raw.githubusercontent.com/abidlabs/gradio/master/screenshots/sentiment_positive.png) +![alt text](https://raw.githubusercontent.com/abidlabs/gradio/master/screenshots/label_interface.png) ### More Documentation