Spaces:
Running
Running
File size: 16,683 Bytes
fbff2aa 098a77b fbff2aa bb0fa8a fbff2aa bb0fa8a fbff2aa 098a77b fbff2aa 098a77b fbff2aa 098a77b fbff2aa 098a77b bb0fa8a fbff2aa 098a77b fbff2aa 098a77b fbff2aa bb0fa8a fbff2aa bb0fa8a fbff2aa bb0fa8a fbff2aa 098a77b bb0fa8a 098a77b bb0fa8a 098a77b fbff2aa bb0fa8a fbff2aa bb0fa8a fbff2aa bb0fa8a fbff2aa bb0fa8a fbff2aa | 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 | import pandas as pd
import numpy as np
import os
import pickle
import warnings
warnings.filterwarnings('ignore')
from sklearn.metrics.pairwise import cosine_similarity
# For IndoBERT query embedding
import torch
from transformers import AutoTokenizer, AutoModel
class TourismRecommender:
"""
Sistem rekomendasi wisata BogorXplore.
Endpoint aktif:
- /api/search memakai IndoBERT untuk pencarian semantik.
- /api/recommendations memakai N-Gram + TF-IDF untuk rekomendasi detail wisata.
Data: 296 destinasi wisata Kabupaten Bogor
"""
def __init__(self, data_path='data/'):
print("Initializing Tourism Recommender...")
self.data_path = data_path
# Load pre-computed data dari dataset (V2 Updated)
ngram_similarity_path = os.path.join(data_path, 'ngram_similarity.npy')
indobert_similarity_path = os.path.join(data_path, 'indobert_similarity.npy')
data_csv_path = os.path.join(data_path, 'data_with_keywords.csv')
tfidf_matrix_path = os.path.join(data_path, 'tfidf_matrix.npy')
tfidf_vectorizer_path = os.path.join(data_path, 'tfidf_vectorizer.pkl')
indobert_embeddings_path = os.path.join(data_path, 'indobert_embeddings.npy')
# Load data
print(" Loading pre-computed data from dataset...")
self.df = pd.read_csv(data_csv_path)
if 'deskripsi_clean' in self.df.columns:
text_col = 'deskripsi_clean'
else:
text_col = 'deskripsi_ngram'
text_mask = self.df[text_col].fillna('').astype(str).str.strip() != ''
self.valid_text_indices = np.flatnonzero(text_mask.to_numpy())
empty_count = len(self.df) - len(self.valid_text_indices)
if empty_count:
print(
f" Note: Keeping all {len(self.df)} rows. "
f"{empty_count} row(s) with empty text use neutral similarity."
)
# Map deskripsi_clean to deskripsi for compatibility
if 'deskripsi_clean' in self.df.columns and 'deskripsi' not in self.df.columns:
self.df['deskripsi'] = self.df['deskripsi_clean']
# Load similarity matrices
self.ngram_sim = self._expand_square_matrix(np.load(ngram_similarity_path), 'ngram_similarity')
self.indobert_sim = self._expand_square_matrix(np.load(indobert_similarity_path), 'indobert_similarity')
print(f" Loaded ngram_similarity: {self.ngram_sim.shape}")
print(f" Loaded indobert_similarity: {self.indobert_sim.shape}")
# Load TF-IDF untuk query search (if needed)
self.tfidf_matrix = self._expand_rows(np.load(tfidf_matrix_path), 'tfidf_matrix')
with open(tfidf_vectorizer_path, 'rb') as f:
self.tfidf_vectorizer = pickle.load(f)
# Load IndoBERT embeddings untuk query search
self.indobert_embeddings = self._expand_rows(np.load(indobert_embeddings_path), 'indobert_embeddings')
# Load IndoBERT model untuk query embedding
print(" Loading IndoBERT model for query encoding...")
self.device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
self.tokenizer = AutoTokenizer.from_pretrained("indobenchmark/indobert-base-p1")
self.model = AutoModel.from_pretrained("indobenchmark/indobert-base-p1")
self.model.eval()
self.model.to(self.device)
print(f" IndoBERT model loaded! Device: {self.device}")
print(f"\nRecommender ready!")
print(f" Total destinations: {len(self.df)}")
print(f" Method: IndoBERT (Search) & N-Gram (Detail Recommendations)")
def _expand_square_matrix(self, matrix, name):
"""Expand compact matrices back to the full destination count."""
target_len = len(self.df)
if matrix.shape == (target_len, target_len):
return matrix
compact_len = len(self.valid_text_indices)
if matrix.shape == (compact_len, compact_len):
expanded = np.zeros((target_len, target_len), dtype=matrix.dtype)
expanded[np.ix_(self.valid_text_indices, self.valid_text_indices)] = matrix
np.fill_diagonal(expanded, 1.0)
print(f" Expanded {name}: {matrix.shape} -> {expanded.shape}")
return expanded
raise ValueError(
f"{name} shape {matrix.shape} does not match "
f"full data ({target_len}, {target_len}) or compact data "
f"({compact_len}, {compact_len})."
)
def _expand_rows(self, values, name):
"""Expand row-based artifacts back to the full destination count."""
target_len = len(self.df)
if values.shape[0] == target_len:
return values
compact_len = len(self.valid_text_indices)
if values.shape[0] == compact_len:
expanded_shape = (target_len, *values.shape[1:])
expanded = np.zeros(expanded_shape, dtype=values.dtype)
expanded[self.valid_text_indices] = values
print(f" Expanded {name}: {values.shape} -> {expanded.shape}")
return expanded
raise ValueError(
f"{name} row count {values.shape[0]} does not match "
f"full data ({target_len}) or compact data ({compact_len})."
)
def _get_query_embedding(self, text):
"""Get IndoBERT embedding for query text (768-dim)"""
if not text:
return np.zeros(768)
try:
inputs = self.tokenizer(text, return_tensors='pt', truncation=True, max_length=256, padding=True)
inputs = {k: v.to(self.device) for k, v in inputs.items()}
with torch.no_grad():
outputs = self.model(**inputs)
return outputs.last_hidden_state.mean(dim=1).squeeze().cpu().numpy()
except:
return np.zeros(768)
def semantic_search(self, query, top_n=10):
"""
Semantic search ONLY using IndoBERT embeddings.
Used for Search feature.
"""
# Encode query with IndoBERT
query_embedding = self._get_query_embedding(query)
# Calculate cosine similarity with all items
bert_scores = cosine_similarity([query_embedding], self.indobert_embeddings).flatten()
# Sort and get top_n
sorted_indices = np.argsort(bert_scores)[::-1]
top_indices = sorted_indices[:top_n] if top_n else sorted_indices
# Build result list
results = []
for idx in top_indices:
place = self.df.iloc[idx]
results.append({
# No 'id' column in CSV, so we use Index as ID for API consistency
'id': int(place['id']) if 'id' in place else int(idx),
'nama': str(place['nama']) if pd.notna(place['nama']) else '',
'kategori': str(place['kategori']) if pd.notna(place['kategori']) else '',
'label': str(place.get('label', '')) if pd.notna(place.get('label')) else '',
'deskripsi': str(place['deskripsi'])[:200] + '...' if pd.notna(place['deskripsi']) and len(str(place['deskripsi'])) > 200 else (str(place['deskripsi']) if pd.notna(place['deskripsi']) else ''),
'url_gambar': str(place.get('url_gambar', '')) if pd.notna(place.get('url_gambar')) else '',
'alamat': str(place.get('alamat', '')) if pd.notna(place.get('alamat')) else '',
'harga_tiket': str(place.get('harga_tiket', '')) if pd.notna(place.get('harga_tiket')) else '',
'similarity_score': round(float(bert_scores[idx]), 4)
})
return results
def get_recommendations(self, place_idx, top_n=10):
"""
Get recommendations using Pre-computed N-Gram Matrix (Sync with Notebook V2).
Used for Detail Page Recommendations.
IMPORTANT: Input `place_idx` MUST be the DataFrame Index (0 to N-1).
"""
# Validate index
if place_idx is None or place_idx < 0 or place_idx >= len(self.df):
print(f"Invalid Place Index: {place_idx}")
return []
# Use pre-computed N-Gram similarity matrix directly
# self.ngram_sim is (n_items, n_items)
ngram_scores = self.ngram_sim[place_idx]
# Sort scores
sim_scores = list(enumerate(ngram_scores))
# Sort by similarity (excluding the place itself)
sim_scores = sorted(sim_scores, key=lambda x: x[1], reverse=True)
# Filter: Exclude self (where index == place_idx) and take top_n
# We start from index 1 because index 0 is the item itself (score 1.0)
# Note: In standard argsort[::-1], the first item is self.
# Here we manually filtered x[0] != place_idx which is safer.
sim_scores = [x for x in sim_scores if x[0] != place_idx][:top_n]
# Build recommendations
recommendations = []
for sim_idx, score in sim_scores:
place = self.df.iloc[sim_idx]
recommendations.append({
'id': int(place['id']) if 'id' in place else int(sim_idx),
'nama': str(place['nama']) if pd.notna(place['nama']) else '',
'kategori': str(place['kategori']) if pd.notna(place['kategori']) else '',
'label': str(place.get('label', '')) if pd.notna(place.get('label')) else '',
'deskripsi': str(place['deskripsi'])[:200] + '...' if pd.notna(place['deskripsi']) and len(str(place['deskripsi'])) > 200 else (str(place['deskripsi']) if pd.notna(place['deskripsi']) else ''),
'url_gambar': str(place.get('url_gambar', '')) if pd.notna(place.get('url_gambar')) else '',
'alamat': str(place.get('alamat', '')) if pd.notna(place.get('alamat')) else '',
'harga_tiket': str(place.get('harga_tiket', '')) if pd.notna(place.get('harga_tiket')) else '',
'similarity_score': round(float(score), 4)
})
return recommendations
def get_place_by_id(self, place_id):
"""Get detailed information for a specific place"""
if place_id < 0 or place_id >= len(self.df):
return None
place = self.df.iloc[place_id]
return {
'id': int(place_id),
'nama': str(place['nama']) if pd.notna(place['nama']) else '',
'kategori': str(place['kategori']) if pd.notna(place['kategori']) else '',
'label': str(place.get('label', '')) if pd.notna(place.get('label')) else '',
'deskripsi': str(place['deskripsi']) if pd.notna(place['deskripsi']) else '',
'alamat': str(place.get('alamat', '')) if pd.notna(place.get('alamat')) else '',
'fasilitas': str(place.get('fasilitas', '')) if pd.notna(place.get('fasilitas')) else '',
'harga_tiket': str(place.get('harga_tiket', '')) if pd.notna(place.get('harga_tiket')) else '',
'jam_operasional': str(place.get('jam_operasional', '')) if pd.notna(place.get('jam_operasional')) else '',
'telepon': str(place.get('telepon', '')) if pd.notna(place.get('telepon')) else '',
'url': str(place.get('url', '')) if pd.notna(place.get('url')) else '',
'url_gambar': str(place.get('url_gambar', '')) if pd.notna(place.get('url_gambar')) else '',
'tags': str(place.get('tags', '')) if pd.notna(place.get('tags')) else '',
'likes': int(place.get('likes', 0)) if pd.notna(place.get('likes')) else 0
}
def get_all_places(self, limit=None, offset=0):
"""Get all places with optional pagination"""
total = len(self.df)
if limit:
df_slice = self.df.iloc[offset:offset+limit]
else:
df_slice = self.df.iloc[offset:]
places = []
for idx, place in df_slice.iterrows():
places.append({
'id': int(idx),
'nama': str(place['nama']) if pd.notna(place['nama']) else '',
'kategori': str(place['kategori']) if pd.notna(place['kategori']) else '',
'label': str(place.get('label', '')) if pd.notna(place.get('label')) else '',
'deskripsi': str(place['deskripsi'])[:200] + '...' if pd.notna(place['deskripsi']) and len(str(place['deskripsi'])) > 200 else (str(place['deskripsi']) if pd.notna(place['deskripsi']) else ''),
'url_gambar': str(place.get('url_gambar', '')) if pd.notna(place.get('url_gambar')) else '',
'harga_tiket': str(place.get('harga_tiket', '')) if pd.notna(place.get('harga_tiket')) else '',
'likes': int(place.get('likes', 0)) if pd.notna(place.get('likes')) else 0
})
return {
'total': total,
'limit': limit,
'offset': offset,
'data': places
}
def search_by_name(self, query):
"""Search places by name (partial match)"""
matches = self.df[self.df['nama'].str.lower().str.contains(query.lower(), na=False)]
if len(matches) == 0:
return None
# Use integer index from reset_index'd DataFrame
# matches.index[0] is now the correct row position (0 to N-1)
return {
'query_name': matches.iloc[0]['nama'],
'query_idx': int(matches.index[0])
}
def get_categories(self):
"""Get all unique categories"""
return self.df['kategori'].unique().tolist()
def get_labels(self):
"""Get all unique labels"""
if 'label' in self.df.columns:
return self.df['label'].dropna().unique().tolist()
return []
def semantic_search(self, query, top_n=10):
"""
Semantic search using IndoBERT similarity matrix (matching notebook behavior)
If query matches an existing place name, use pre-computed similarity matrix.
Otherwise, fall back to on-the-fly query encoding.
"""
try:
if top_n is None:
top_n = 10
# Normalize query for comparison
query_lower = query.strip().lower()
# Check if query matches an existing place name
place_idx = None
for idx, row in self.df.iterrows():
if row['nama'].strip().lower() == query_lower:
place_idx = idx
break
if place_idx is not None:
# Use pre-computed IndoBERT similarity matrix (like notebook)
print(f" Using IndoBERT similarity matrix for place: {self.df.iloc[place_idx]['nama']}")
sim_scores = self.indobert_sim[place_idx]
# Get top N (excluding itself at index 0)
top_indices = sim_scores.argsort()[::-1][1:top_n+1]
else:
# Fall back to on-the-fly query encoding
print(f" Query not found as place name, using query encoding...")
query_emb = self._get_query_embedding(query)
query_emb = query_emb.reshape(1, -1)
sim_scores = cosine_similarity(query_emb, self.indobert_embeddings)[0]
top_indices = sim_scores.argsort()[::-1][:top_n]
results = []
for idx in top_indices:
# SAFEGUARD: Ignore indices that are out of bounds
if idx >= len(self.df):
print(f" Ignored out-of-bounds index: {idx}")
continue
place = self.df.iloc[idx]
results.append({
'id': int(idx),
'nama': str(place['nama']),
'score': float(sim_scores[idx]),
'deskripsi': str(place['deskripsi'])[:200] if pd.notna(place.get('deskripsi')) else '',
'kategori': str(place['kategori']) if pd.notna(place.get('kategori')) else '',
'url_gambar': str(place['url_gambar']) if pd.notna(place.get('url_gambar')) else ''
})
return {
'status': 'success',
'data': results
}
except Exception as e:
print(f"Error in semantic_search: {e}")
import traceback
traceback.print_exc()
return {
'status': 'error',
'message': str(e)
}
|