Update app.py
Browse files
app.py
CHANGED
|
@@ -10,7 +10,7 @@ print("🔄 Loading data and models...")
|
|
| 10 |
df = pd.read_csv("clean_feedback.csv")
|
| 11 |
print("✅ CSV loaded with columns:", df.columns.tolist())
|
| 12 |
|
| 13 |
-
embeddings = np.load("
|
| 14 |
print("✅ Embeddings loaded with shape:", embeddings.shape)
|
| 15 |
|
| 16 |
index = faiss.read_index("feedback.index")
|
|
|
|
| 10 |
df = pd.read_csv("clean_feedback.csv")
|
| 11 |
print("✅ CSV loaded with columns:", df.columns.tolist())
|
| 12 |
|
| 13 |
+
embeddings = np.load("embeddings.npy")
|
| 14 |
print("✅ Embeddings loaded with shape:", embeddings.shape)
|
| 15 |
|
| 16 |
index = faiss.read_index("feedback.index")
|