Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -367,7 +367,7 @@ if uploaded_file is not None:
|
|
| 367 |
# 최적의 토픽 수 추천 (Combined Score 사용)
|
| 368 |
best_combined_index = np.argmax(combined_scores)
|
| 369 |
best_topic_count = topic_range[0] + best_combined_index
|
| 370 |
-
st.markdown(f"**추천 토픽 수**: Perplexity와 Coherence를 종합적으로 고려
|
| 371 |
|
| 372 |
# 추가 정보 제공
|
| 373 |
st.info(f"Combined Score가 가장 높은 토픽 수: {best_topic_count}")
|
|
|
|
| 367 |
# 최적의 토픽 수 추천 (Combined Score 사용)
|
| 368 |
best_combined_index = np.argmax(combined_scores)
|
| 369 |
best_topic_count = topic_range[0] + best_combined_index
|
| 370 |
+
st.markdown(f"**추천 토픽 수**: Perplexity와 Coherence를 종합적으로 고려하면 토픽 개수는 **{best_topic_count}개를 추천합니다**")
|
| 371 |
|
| 372 |
# 추가 정보 제공
|
| 373 |
st.info(f"Combined Score가 가장 높은 토픽 수: {best_topic_count}")
|