Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -77,7 +77,7 @@ def predict_emotion(text, top_k=5):
|
|
77 |
result = sorted(zip(KOTE_LABELS, probs), key=lambda x: x[1], reverse=True)
|
78 |
return result[:top_k], probs
|
79 |
|
80 |
-
tabs = st.tabs(["๊ฐ์ ๋ถ์ ์ฒดํ", "AI๋ ์ด๋ป๊ฒ ๊ฐ์ ์ ์ดํดํ ๊น?", "Few-shot Fine-tuning์ด๋?", "ํ์ฉ๊ณผ ์์"])
|
81 |
|
82 |
with tabs[0]:
|
83 |
st.markdown('<div class="big-title">๐ญ ํ๊ตญ์ด ๊ฐ์ ๋ถ์ AI ์ฒดํ</div>', unsafe_allow_html=True)
|
@@ -178,3 +178,9 @@ with tabs[3]:
|
|
178 |
</div>
|
179 |
""", unsafe_allow_html=True)
|
180 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
result = sorted(zip(KOTE_LABELS, probs), key=lambda x: x[1], reverse=True)
|
78 |
return result[:top_k], probs
|
79 |
|
80 |
+
tabs = st.tabs(["๊ฐ์ ๋ถ์ ์ฒดํ", "AI๋ ์ด๋ป๊ฒ ๊ฐ์ ์ ์ดํดํ ๊น?", "Few-shot Fine-tuning์ด๋?", "ํ์ฉ๊ณผ ์์", "๊ธฐํ ์๋ฃ๋ฃ"])
|
81 |
|
82 |
with tabs[0]:
|
83 |
st.markdown('<div class="big-title">๐ญ ํ๊ตญ์ด ๊ฐ์ ๋ถ์ AI ์ฒดํ</div>', unsafe_allow_html=True)
|
|
|
178 |
</div>
|
179 |
""", unsafe_allow_html=True)
|
180 |
|
181 |
+
with tabs[4]:
|
182 |
+
st.image("image/clustering-2.png", use_column_width=True)
|
183 |
+
st.image("image/clustering-10.png", use_column_width=True)
|
184 |
+
st.image("image/clustering-plutchiks.png", use_column_width=True)
|
185 |
+
st.image("image/clustering-plutchiks-bert.png", use_column_width=True)
|
186 |
+
|