Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -63,11 +63,7 @@ if __name__ == '__main__':
|
|
63 |
|
64 |
title = "KELIP"
|
65 |
description = "Zero-shot classification with KELIP -- Korean and English bilingual contrastive Language-Image Pre-training model that is trained with collected 1.1 billion image-text pairs (708 million Korean and 476 million English).<br> <br><a href='https://arxiv.org/abs/2203.14463' target='_blank'>Arxiv</a> | <a href='https://github.com/navervision/KELIP' target='_blank'>Github</a>"
|
66 |
-
examples = [
|
67 |
-
["seokchon_lake.jpg", "ํํ์๋ฌธ,์ฌ๋ฆผํฝ๊ณต์,๋กฏ๋ฐ์๋,์์ดํธ์"],
|
68 |
-
["seokchon_lake.jpg", "spring,summer,autumn,winter"],
|
69 |
-
["dog.jpg", "a dog,a cat,a tiger,a rabbit"],
|
70 |
-
]
|
71 |
|
72 |
article = ""
|
73 |
|
@@ -80,5 +76,4 @@ if __name__ == '__main__':
|
|
80 |
description=description,
|
81 |
article=article
|
82 |
)
|
83 |
-
iface.launch()
|
84 |
-
|
|
|
63 |
|
64 |
title = "KELIP"
|
65 |
description = "Zero-shot classification with KELIP -- Korean and English bilingual contrastive Language-Image Pre-training model that is trained with collected 1.1 billion image-text pairs (708 million Korean and 476 million English).<br> <br><a href='https://arxiv.org/abs/2203.14463' target='_blank'>Arxiv</a> | <a href='https://github.com/navervision/KELIP' target='_blank'>Github</a>"
|
66 |
+
examples = []
|
|
|
|
|
|
|
|
|
67 |
|
68 |
article = ""
|
69 |
|
|
|
76 |
description=description,
|
77 |
article=article
|
78 |
)
|
79 |
+
iface.launch()
|
|