| from fastai.vision.all import * |
| import gradio as gr |
|
|
| |
| label = gr.Label(num_top_classes=3) |
| examples = ['Papilio glaucus.jpg','Papilio palamedes.jpg','Protographium marcellus.jpg','Papilio multicaudata.jpg', |
| 'Parides photinus.jpg','Battus philenor.jpg', |
| 'Papilio cresphontes.jpg','Parnassius smintheus.jpg','Papilio thoas.jpg'] |
|
|
| title="FlutterBy" |
| description="Detects the most common North American swallowtail and cattleheart butterflies. Provide an image or select from one below. Best results will come from a full frame posed shot. Trained on 8577 images over 51 species using ResNet50." |
|
|
| intf = gr.load(src='models',name='flobbit/flutterby/', |
| examples=examples, |
| title=title, description=description, |
| outputs=label |
| ) |
| intf.launch() |
|
|