Nucha commited on
Commit
156ce5d
·
verified ·
1 Parent(s): 6f6166a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -30,7 +30,10 @@ with col1:
30
 
31
  with col2:
32
  st.header("Result")
33
- st.write("Press button [Analyze]")
 
 
 
34
  if analyze_button:
35
  ner_results = ner_pipeline(text)
36
 
 
30
 
31
  with col2:
32
  st.header("Result")
33
+
34
+ # ใช้ st.markdown กับ CSS เพื่อปรับขนาดฟอนต์
35
+ st.markdown("Press button [Analyze]", unsafe_allow_html=True)
36
+
37
  if analyze_button:
38
  ner_results = ner_pipeline(text)
39