File size: 775 Bytes
9c446bf
 
9dcfc9a
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr

model1 = gr.Interface.load("models/OttoYu/TreeClassification",
                           title="🌳 Tree Classification by Simple machine learning”,
                           description="This web application can identify trees with only one image upload. Since this application is on trial, if you find any errors, please contact exottoyu@gmail.com.")

model2 = gr.Interface.load("models/OttoYu/TreeDisease”,
                           title="🦠 Tree Disease Classification (bilingual)”,
                           description=“This online application covers 22 most typical tree disease over 140+ images. Since this application is on trial, if you find any errors, please contact exottoyu@gmail.com.“)

gr.Parallel(model1,model2).lanch()