-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
28 lines (24 loc) · 1.07 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from data_processing import load_and_process_data, preprocess_text
from recommendation import recommend_places
from sklearn.feature_extraction.text import TfidfVectorizer
import streamlit as st
# Đọc và xử lý dữ liệu
file_path = "data\DataSet.xlsx"
df = load_and_process_data(file_path)
# Tạo TF-IDF cho mô tả của các địa điểm
tfidf = TfidfVectorizer()
tfidf.fit(df['Mô tả sau tách'])
# Giao diện Streamlit
st.title("Vietnam Travel Recommendation System")
user_input = st.text_area("Nhập mô tả mong muốn của bạn:")
if st.button("Tìm kiếm"):
if not user_input.strip():
st.error("Vui lòng nhập mô tả mong muốn.")
else:
recommendations = recommend_places(user_input, df, tfidf, preprocess_text)
if recommendations.empty:
st.write("Không tìm thấy địa điểm phù hợp với yêu cầu của bạn.")
else:
for _, row in recommendations.iterrows():
st.subheader(row['Tên địa điểm'])
st.write(f"**Mô tả:** {row['Mô tả']}")