Spaces:
Build error
Build error
Добавлена гистограма.
Browse files
app.py
CHANGED
@@ -82,7 +82,7 @@ if not text is None and len(text) > 0:
|
|
82 |
# Топ 5 слов.
|
83 |
top = 5
|
84 |
top = min(len(labels, top))
|
85 |
-
st.markdown("Топ %d ключевых слов: **%s**" % (top', '.join(labels[0:5])))
|
86 |
|
87 |
# График важности слов.
|
88 |
fig, ax = plt.subplots(figsize=(8, 16))
|
|
|
82 |
# Топ 5 слов.
|
83 |
top = 5
|
84 |
top = min(len(labels, top))
|
85 |
+
st.markdown("Топ %d ключевых слов: **%s**" % (top, ', '.join(labels[0:5])))
|
86 |
|
87 |
# График важности слов.
|
88 |
fig, ax = plt.subplots(figsize=(8, 16))
|