Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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("📝
|
| 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"])
|