soojeongcrystal commited on
Commit
3b6c6b3
·
verified ·
1 Parent(s): b7b37c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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를 종합적으로 고려 Combined Score 기준 **{best_topic_count}개 토픽**")
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}")