polejowska commited on
Commit
7d10adc
1 Parent(s): a911242
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ title = "🔬 Lekocytes classification from blood smear images"
4
+ description = "Upload your own image"
5
+ css = "body {background-color: #eedeff}"
6
+ EXAMPLES = []
7
+
8
+ gr.Interface.load("models/polejowska/swin-tiny-patch4-window7-224-lcbsi-wbc", description=description, title=title, css=css, examples=EXAMPLES).launch()