Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ import torch
|
|
4 |
from sentence_transformers import SentenceTransformer, util
|
5 |
|
6 |
# تحميل الداتا
|
7 |
-
df = pd.read_csv("
|
8 |
questions = df['question'].tolist()
|
9 |
answers = df['answer'].tolist()
|
10 |
|
|
|
4 |
from sentence_transformers import SentenceTransformer, util
|
5 |
|
6 |
# تحميل الداتا
|
7 |
+
df = pd.read_csv("combined_qa_data.csv", encoding='ISO-8859-1')
|
8 |
questions = df['question'].tolist()
|
9 |
answers = df['answer'].tolist()
|
10 |
|