Spaces:
Runtime error
Runtime error
JustinLin610
commited on
Commit
•
520d4cb
1
Parent(s):
6157f61
Update app.py
Browse files
app.py
CHANGED
@@ -31,14 +31,16 @@ def shot(image, labels_text, model_name):
|
|
31 |
return {dic["label"]: dic["score"] for dic in res}
|
32 |
|
33 |
iface = gr.Interface(shot,
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
|
|
|
|
43 |
|
44 |
iface.launch()
|
|
|
31 |
return {dic["label"]: dic["score"] for dic in res}
|
32 |
|
33 |
iface = gr.Interface(shot,
|
34 |
+
inputs,
|
35 |
+
"label",
|
36 |
+
examples=[["festival.jpg", "灯笼, 鞭炮, 对联", "ViT/B-16"],
|
37 |
+
["cat-dog-music.png", "音乐表演, 体育运动", "ViT/B-16"],
|
38 |
+
["football-match.jpg", "梅西, C罗, 马奎尔", "ViT/B-16"]],
|
39 |
+
description="""<p>Chinese CLIP is a contrastive-learning-based vision-language foundation model pretrained on large-scale Chinese data. For more information, please refer to the paper and official github. Also, Chinese CLIP has already been merged into Huggingface Transformers! <br><br>
|
40 |
+
Paper: <a href='https://arxiv.org/abs/2211.01335'>https://arxiv.org/abs/2211.01335</a> <br>
|
41 |
+
Github: <a href='https://github.com/OFA-Sys/Chinese-CLIP'>https://github.com/OFA-Sys/Chinese-CLIP</a> <br><br>
|
42 |
+
To play with this demo, add a picture and a list of labels in Chinese separated by commas. 上传图片,并输入多个分类标签,用英文逗号分隔。<br>
|
43 |
+
You can duplicating this space and run it privately: <a style='display:inline-block' href='https://huggingface.co/spaces/OFA-Sys/chinese-clip-zero-shot-image-classification?duplicate=true'><img src='https://img.shields.io/badge/-Duplicate%20Space-blue?labelColor=white&style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAP5JREFUOE+lk7FqAkEURY+ltunEgFXS2sZGIbXfEPdLlnxJyDdYB62sbbUKpLbVNhyYFzbrrA74YJlh9r079973psed0cvUD4A+4HoCjsA85X0Dfn/RBLBgBDxnQPfAEJgBY+A9gALA4tcbamSzS4xq4FOQAJgCDwV2CPKV8tZAJcAjMMkUe1vX+U+SMhfAJEHasQIWmXNN3abzDwHUrgcRGmYcgKe0bxrblHEB4E/pndMazNpSZGcsZdBlYJcEL9Afo75molJyM2FxmPgmgPqlWNLGfwZGG6UiyEvLzHYDmoPkDDiNm9JR9uboiONcBXrpY1qmgs21x1QwyZcpvxt9NS09PlsPAAAAAElFTkSuQmCC&logoWidth=14' alt='Duplicate Space'></a></p>""",
|
44 |
+
title="Zero-shot Image Classification (中文零样本图像分类)")
|
45 |
|
46 |
iface.launch()
|