NghiTran1009 commited on
Commit
9d7548a
·
verified ·
1 Parent(s): 558a6b7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ crf = load_model()
13
  def extract_features(sentence):
14
  return [{"word": token, "pos": pos} for token, pos in zip(sentence["Token"], sentence["POS"])]
15
 
16
- st.title("📝 Tool Gán Nhãn Chunking")
17
 
18
  # Upload file
19
  uploaded_file = st.file_uploader("📤 Tải lên file CSV chứa dữ liệu cần gán nhãn", type=["csv"])
 
13
  def extract_features(sentence):
14
  return [{"word": token, "pos": pos} for token, pos in zip(sentence["Token"], sentence["POS"])]
15
 
16
+ st.title("📝 Preprocessing tool")
17
 
18
  # Upload file
19
  uploaded_file = st.file_uploader("📤 Tải lên file CSV chứa dữ liệu cần gán nhãn", type=["csv"])