qanastek commited on
Commit
dbcd12b
1 Parent(s): a21cb7c
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -55,10 +55,10 @@ def main():
55
 
56
  texts, labels = getPos(s)
57
 
58
- st.markdown("## Labels:")
59
  st.write(" ".join(labels))
60
 
61
- st.markdown("## JSON:")
62
  st.json(getDictFromPOS(texts, labels))
63
 
64
  except Exception as e:
55
 
56
  texts, labels = getPos(s)
57
 
58
+ st.header("Labels:")
59
  st.write(" ".join(labels))
60
 
61
+ st.header("JSON:")
62
  st.json(getDictFromPOS(texts, labels))
63
 
64
  except Exception as e: