mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-06 10:25:17 +08:00
Update README.md
This commit is contained in:
parent
b55115714c
commit
0169f73f35
10
README.md
10
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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user