update evaluation
Browse files- chroma/chroma_preview.json +0 -0
- datasets/processed/bank_faq/train_faq_df.csv +0 -0
- eval_pipeline.py +0 -110
- test_eval_v2.json +811 -0
- test_eval_v7.json +431 -0
chroma/chroma_preview.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
datasets/processed/bank_faq/train_faq_df.csv
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
eval_pipeline.py
CHANGED
|
@@ -38,11 +38,6 @@ retriever = vectorstore.as_retriever(
|
|
| 38 |
# test_docs_scores = vectorstore.similarity_search_with_score("what are the fees", k=3)
|
| 39 |
# print("With scores:", test_docs_scores)
|
| 40 |
|
| 41 |
-
from difflib import SequenceMatcher
|
| 42 |
-
|
| 43 |
-
# def is_correct(predicted: str, expected: str, threshold=0.6) -> bool:
|
| 44 |
-
# ratio = SequenceMatcher(None, predicted.lower(), expected.lower()).ratio()
|
| 45 |
-
# return ratio >= threshold
|
| 46 |
|
| 47 |
def llm_judge(query, expected, predicted, llm):
|
| 48 |
prompt = f"""
|
|
@@ -136,111 +131,6 @@ def retrieval_success_check(expected, retrieved_text, threshold=0.6):
|
|
| 136 |
# for _, row in test_df.iterrows()
|
| 137 |
# ]
|
| 138 |
|
| 139 |
-
# def evaluate(dataset: list[dict], split: str = "", sample: int = None) -> float:
|
| 140 |
-
# data = random.sample(dataset, sample) if sample else dataset
|
| 141 |
-
# correct = 0
|
| 142 |
-
# for item in tqdm(data, desc=f"Evaluating {split}", unit="q"):
|
| 143 |
-
# predicted = ask(query=item["query"], persist=False)
|
| 144 |
-
# if is_correct(predicted, item["expected_answer"]):
|
| 145 |
-
# correct += 1
|
| 146 |
-
# return correct / len(data)
|
| 147 |
-
|
| 148 |
-
# train_accuracy = evaluate(train_dataset, split="train", sample=200)
|
| 149 |
-
# test_accuracy = evaluate(test_dataset, split="test", sample=100)
|
| 150 |
-
|
| 151 |
-
# print(f"Train accuracy: {train_accuracy:.2%}")
|
| 152 |
-
# print(f"Test accuracy: {test_accuracy:.2%}")
|
| 153 |
-
|
| 154 |
-
# import matplotlib.pyplot as plt
|
| 155 |
-
# import seaborn as sns
|
| 156 |
-
# labels = ["Train", "Test"]
|
| 157 |
-
# accuracies = [train_accuracy, test_accuracy]
|
| 158 |
-
|
| 159 |
-
# plt.figure(figsize=(6, 4))
|
| 160 |
-
# plt.bar(labels, accuracies, color=["steelblue", "coral"], width=0.4)
|
| 161 |
-
# plt.ylim(0, 1)
|
| 162 |
-
# plt.ylabel("Accuracy")
|
| 163 |
-
# plt.title("Chatbot Accuracy — Train vs Test")
|
| 164 |
-
|
| 165 |
-
# for i, v in enumerate(accuracies):
|
| 166 |
-
# plt.text(i, v + 0.02, f"{v:.1%}", ha="center", fontweight="bold")
|
| 167 |
-
|
| 168 |
-
# plt.tight_layout()
|
| 169 |
-
# plt.savefig("accuracy.png")
|
| 170 |
-
# plt.show()
|
| 171 |
-
|
| 172 |
-
|
| 173 |
-
# def evaluate(dataset: list[dict], split: str = "", sample: int = None):
|
| 174 |
-
# data = random.sample(dataset, sample) if sample else dataset
|
| 175 |
-
|
| 176 |
-
# results = []
|
| 177 |
-
|
| 178 |
-
# correct = 0
|
| 179 |
-
# hallucinated = 0
|
| 180 |
-
# retrieval_failures = 0
|
| 181 |
-
# total_recall = 0
|
| 182 |
-
# total_precision = 0
|
| 183 |
-
|
| 184 |
-
# for item in tqdm(data, desc=f"Evaluating {split}", unit="q"):
|
| 185 |
-
|
| 186 |
-
# query = item["query"]
|
| 187 |
-
# expected = item["expected_answer"]
|
| 188 |
-
# relevant_doc_ids = item["relevant_doc_ids"] # ← from your tagged dataset
|
| 189 |
-
|
| 190 |
-
# # run chatbot
|
| 191 |
-
# predicted = ask(query=query, persist=False)
|
| 192 |
-
|
| 193 |
-
# # --- retrieval ---
|
| 194 |
-
# retrieved_docs = retriever.invoke(query)
|
| 195 |
-
# recall, precision = retrieval_metrics(retrieved_docs, relevant_doc_ids, k=K)
|
| 196 |
-
|
| 197 |
-
# retrieval_success = recall > 0 # at least one relevant chunk retrieved
|
| 198 |
-
|
| 199 |
-
# total_recall += recall
|
| 200 |
-
# total_precision += precision
|
| 201 |
-
|
| 202 |
-
# if not retrieval_success:
|
| 203 |
-
# retrieval_failures += 1
|
| 204 |
-
|
| 205 |
-
# # --- correctness ---
|
| 206 |
-
# correct_flag = is_correct(predicted, expected)
|
| 207 |
-
|
| 208 |
-
# # --- hallucination ---
|
| 209 |
-
# # hallucination = retrieval worked but LLM still got it wrong
|
| 210 |
-
# # (if retrieval failed, it's a retrieval problem, not hallucination)
|
| 211 |
-
# hallucinated_flag = retrieval_success and not correct_flag
|
| 212 |
-
|
| 213 |
-
# if correct_flag:
|
| 214 |
-
# correct += 1
|
| 215 |
-
|
| 216 |
-
# if hallucinated_flag:
|
| 217 |
-
# hallucinated += 1
|
| 218 |
-
|
| 219 |
-
# results.append({
|
| 220 |
-
# "query": query,
|
| 221 |
-
# "expected": expected,
|
| 222 |
-
# "predicted": predicted,
|
| 223 |
-
# "relevant_doc_ids": relevant_doc_ids,
|
| 224 |
-
# "retrieved_doc_ids": [doc.metadata["doc_id"] for doc in retrieved_docs[:K]],
|
| 225 |
-
# "retrieval_success": retrieval_success,
|
| 226 |
-
# f"recall@{K}": recall,
|
| 227 |
-
# f"precision@{K}": precision,
|
| 228 |
-
# "correct": correct_flag,
|
| 229 |
-
# "hallucinated": hallucinated_flag
|
| 230 |
-
# })
|
| 231 |
-
|
| 232 |
-
# metrics = {
|
| 233 |
-
# "split": split,
|
| 234 |
-
# "accuracy": correct / len(data),
|
| 235 |
-
# "hallucination_rate": hallucinated / len(data),
|
| 236 |
-
# "retrieval_failure_rate": retrieval_failures / len(data),
|
| 237 |
-
# f"recall@{K}": total_recall / len(data),
|
| 238 |
-
# f"precision@{K}": total_precision / len(data),
|
| 239 |
-
# "samples": len(data)
|
| 240 |
-
# }
|
| 241 |
-
|
| 242 |
-
# return metrics, results
|
| 243 |
-
|
| 244 |
def measure_hallucination(query: str, response: str, chunks: list[dict], llm) -> dict:
|
| 245 |
"""
|
| 246 |
Uses the LLM to check whether the response contains claims
|
|
|
|
| 38 |
# test_docs_scores = vectorstore.similarity_search_with_score("what are the fees", k=3)
|
| 39 |
# print("With scores:", test_docs_scores)
|
| 40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
|
| 42 |
def llm_judge(query, expected, predicted, llm):
|
| 43 |
prompt = f"""
|
|
|
|
| 131 |
# for _, row in test_df.iterrows()
|
| 132 |
# ]
|
| 133 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 134 |
def measure_hallucination(query: str, response: str, chunks: list[dict], llm) -> dict:
|
| 135 |
"""
|
| 136 |
Uses the LLM to check whether the response contains claims
|
test_eval_v2.json
ADDED
|
@@ -0,0 +1,811 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metrics": {
|
| 3 |
+
"split": "test",
|
| 4 |
+
"accuracy": 0.23,
|
| 5 |
+
"hallucination_rate": 0.77,
|
| 6 |
+
"retrieval_failure_rate": 1.0,
|
| 7 |
+
"samples": 100
|
| 8 |
+
},
|
| 9 |
+
"detailed_results": [
|
| 10 |
+
{
|
| 11 |
+
"query": "Do I have to pay any margin money - my own funding (Education Loans For Indian Education)",
|
| 12 |
+
"expected": "Margin Money upto Rs. 4.00 lacs - Nil, For loans above Rs. 4.00 lacs - 5%",
|
| 13 |
+
"predicted": "Margin Money upto Rs. 4.00 lacs - Nil, For loans above Rs. 4.00 lacs - 15%.",
|
| 14 |
+
"retrieval_success": false,
|
| 15 |
+
"correct": true,
|
| 16 |
+
"hallucinated": false
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"query": "What do you mean by pre-existing diseases not covered under the Critical Illness plan",
|
| 20 |
+
"expected": "A pre-existing disease is any condition, ailment, injury or related condition for which the insured person had signs or symptoms and/or was diagnosed and/or received medical advice or treatment prior to the first policy with the company",
|
| 21 |
+
"predicted": "A pre-existing disease is any condition, ailment, injury or related condition for which the insured person had signs or symptoms and/or was diagnosed and/or received medical advice or treatment prior to the first policy with the company.",
|
| 22 |
+
"retrieval_success": false,
|
| 23 |
+
"correct": true,
|
| 24 |
+
"hallucinated": false
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"query": "Does M&N Bank offer preferential rate of interest on Fixed Deposits for Senior Citizens",
|
| 28 |
+
"expected": "We offer preferential rate of interest on Fixed Deposits for Senior Citizens. If you are a senior citizen, all you need to do is register as one by calling any Branch with proof of your Date of Birth. Once registered as a Senior Citizen, you are eligible for preferential rates of interest on Fixed Deposits opened through NetBanking as well. Click here to Interest Rates on Fixed Deposits. The Fixed Deposit will be booked in the same combination/ order of names as the existing Current/Savings account, from which the funds are being transferred. View more",
|
| 29 |
+
"predicted": "I don't have information on that.",
|
| 30 |
+
"retrieval_success": false,
|
| 31 |
+
"correct": false,
|
| 32 |
+
"hallucinated": true
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"query": "During the policy period, if I add accessories like a music system in my vehicle, are they also covered",
|
| 36 |
+
"expected": "Yes, they will be, as long as you make a written request to us with a description of the accessory along with its value. You may also have to pay an additional premium.",
|
| 37 |
+
"predicted": "Yes, additions such as accessories (e.g. a music system) are guaranteed to be paid for every completed policy term.",
|
| 38 |
+
"retrieval_success": false,
|
| 39 |
+
"correct": false,
|
| 40 |
+
"hallucinated": true
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"query": "What is the premium frequency available under policy",
|
| 44 |
+
"expected": "The premiums can be paid annually, half-yearly, quarterly and annually.",
|
| 45 |
+
"predicted": "The premiums can be paid Annually, Half-Yearly, Quarterly and Monthly.",
|
| 46 |
+
"retrieval_success": false,
|
| 47 |
+
"correct": true,
|
| 48 |
+
"hallucinated": false
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"query": "How much can I borrow",
|
| 52 |
+
"expected": "You can take a loan ranging from Rs. 50,000 to Rs. 15,00,000, depending on your income and repayment capacity. You can club your spouses income if you want to get a bigger loan.",
|
| 53 |
+
"predicted": "You can avail of a loan from Rs 50,000/- to Rs 50,00,000/- depending on your income, repayment capacity and respective location product cap.",
|
| 54 |
+
"retrieval_success": false,
|
| 55 |
+
"correct": true,
|
| 56 |
+
"hallucinated": false
|
| 57 |
+
},
|
| 58 |
+
{
|
| 59 |
+
"query": "What is the minimum balance required for an Institutional Current Account",
|
| 60 |
+
"expected": "No minimum balance requirement.",
|
| 61 |
+
"predicted": "The minimum balance requirement for an Institutional Current Account is not explicitly mentioned in the provided context. However, it's possible that there might be a specific average quarterly balance (AQB) or other requirements mentioned elsewhere in the bank's policies or documentation. If you could provide more information or clarify what you're looking for, I'd be happy to try and help further.",
|
| 62 |
+
"retrieval_success": false,
|
| 63 |
+
"correct": false,
|
| 64 |
+
"hallucinated": true
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"query": "How can I change / add the email ID in my account",
|
| 68 |
+
"expected": "We request you to follow the procedure mentioned below to change your email ID:We request you to follow either of procedure mentioned below to change / add your email ID: 1) Request through branch:Step 1) Fill the application form available at the Branch (duly signed by all the holders). Step 2) If you are unable to visit an M&N Bank Branch, you can send the Form by post or courier. Note / Important: Instructions received through Net Banking, scan copy, fax or email will not be processed for security and authentication purposes. Updates for InstaAlerts (if registered) need to be done separately. InstaAlerts Updates: Please follow the steps mentioned below to update your Email ID online for InstaAlerts (in case you are registered for the InstaAlerts facility): Step 1) Log in to your NetBanking and click on InstaAlerts located at the top right corner of the web page Step 2) Click on Unsubscribe Alerts on the left hand pane of the web page Step 3) Check the Email option and select Continue and then Confirm Step 4) Click on Subscribe for Alerts in the left hand pane of the web page Step 5) Check the Email option and enter your new mobile number, then click on Continue and Confirm Step 6) Go to Manage Alerts and select the required option 2) Request through Phone Banking:We request you to call up our PhoneBanking to change / add your email address. View more",
|
| 69 |
+
"predicted": "We request you get in touch with the nearest branch to enable us to register you for E-mail Statements of your Mutual Funds. On receipt of the form, your e-mail ID will be updated with the respective AMC within 15 working days. You will receive the holding statements on your email and mailing address simultaneously after registration.",
|
| 70 |
+
"retrieval_success": false,
|
| 71 |
+
"correct": false,
|
| 72 |
+
"hallucinated": true
|
| 73 |
+
},
|
| 74 |
+
{
|
| 75 |
+
"query": "What are the available plans under the Critical Illness policy",
|
| 76 |
+
"expected": "You can choose to be insured for any of the following amounts: Rs. 2,50,000, Rs. 5,00,000, Rs.7,50,000 or Rs. 10,00,000.",
|
| 77 |
+
"predicted": "The available plans under the Critical Illness policy are:\n\n1. Critical Illness - Platinum Plan\n2. View more (this suggests that there may be other plans available, but it's not specified what they are)",
|
| 78 |
+
"retrieval_success": false,
|
| 79 |
+
"correct": false,
|
| 80 |
+
"hallucinated": true
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"query": "What is M&N Bank ForexPlus Chip card",
|
| 84 |
+
"expected": "M&N Bank ForexPlus Chip card is a magnetic strip based prepaid card introduced in partnership with Visa / Mastercard International. The card offers you a convenient and secure way to carry forex. This card offers you the freedom to shop anywhere in the world and provides access to the currency of your destination at competitive market rates. It can be used at all Visa / Mastercard ATMs and Merchant establishment worldwide. This card cannot be used for making payments in India, Nepal or Bhutan.",
|
| 85 |
+
"predicted": "M&N Bank ForexPlus Platinum (Chip) card is an embedded chip based Prepaid card introduced in partnership with VISA International. It offers you a convenient and secure way to carry your Forex. This card gives you the freedom to shop anywhere in the world and provides access to the currency of your destination at competitive market rates. It can be used at all VISA ATMs and Merchant Establishments worldwide. This card cannot be used for payments in India, Nepal or Bhutan.",
|
| 86 |
+
"retrieval_success": false,
|
| 87 |
+
"correct": false,
|
| 88 |
+
"hallucinated": true
|
| 89 |
+
},
|
| 90 |
+
{
|
| 91 |
+
"query": "Who can open an Investment Services account",
|
| 92 |
+
"expected": "Any Individual or HUF, who has an M&N Bank Savings Account and is KYC compliant, can register for a Mutual Fund Investment Services Account. NRI customers who are KYC compliant and have a Savings account can also avail of this service. The Savings Bank account status has to be single or either/Survivor.",
|
| 93 |
+
"predicted": "Any Indian resident or Non-resident individual (not US-based) or Indian corporate can register with M&N Bank to open an Investment Services account, but currently, overseas corporate bodies (OCBs) cannot open an account directly with M&N Securities. To become a registered user of M&N Securities, you will have to first open a Savings/Current account and Demat account with M&N Bank.",
|
| 94 |
+
"retrieval_success": false,
|
| 95 |
+
"correct": false,
|
| 96 |
+
"hallucinated": true
|
| 97 |
+
},
|
| 98 |
+
{
|
| 99 |
+
"query": "Can I avail an Overdraft against my Property",
|
| 100 |
+
"expected": "A Loan Against Property can be availed as a Term Loan with EMI repayments or as a Drop line Overdraft Facility.",
|
| 101 |
+
"predicted": "I don't have information on that.",
|
| 102 |
+
"retrieval_success": false,
|
| 103 |
+
"correct": false,
|
| 104 |
+
"hallucinated": true
|
| 105 |
+
},
|
| 106 |
+
{
|
| 107 |
+
"query": "When does the Bank issue a TDS Certificate",
|
| 108 |
+
"expected": "The TDS Certificate, Form 16A, for TDS deducted during a calendar quarter, will be issued in the next month of the respective quarter.",
|
| 109 |
+
"predicted": "You will receive a consolidated TDS Certificate in Form 16A, for TDS deducted during a financial year, in the month of April of the following financial year.",
|
| 110 |
+
"retrieval_success": false,
|
| 111 |
+
"correct": false,
|
| 112 |
+
"hallucinated": true
|
| 113 |
+
},
|
| 114 |
+
{
|
| 115 |
+
"query": "Does the KYC Acknowledgement have an expiry date",
|
| 116 |
+
"expected": "No. Once the KYC Acknowledgement is obtained and informed to a Mutual Fund, it will be registered against the folio and quoted in all future account statements. The same will exist in perpetuity, unless cancelled by CVL.",
|
| 117 |
+
"predicted": "I don't have information on that.",
|
| 118 |
+
"retrieval_success": false,
|
| 119 |
+
"correct": false,
|
| 120 |
+
"hallucinated": true
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"query": "Can a Travel Insurance policy be extended",
|
| 124 |
+
"expected": "Extensions are applicable to original policies of 30 days or more and provided the policy is still in force.",
|
| 125 |
+
"predicted": "Yes, an extension under the policy shall be provided subject to certain conditions.",
|
| 126 |
+
"retrieval_success": false,
|
| 127 |
+
"correct": false,
|
| 128 |
+
"hallucinated": true
|
| 129 |
+
},
|
| 130 |
+
{
|
| 131 |
+
"query": "How many days in advance can I purchase foreign exchange",
|
| 132 |
+
"expected": "You can purchase foreign exchange up to 180 days in advance from the date of departure.",
|
| 133 |
+
"predicted": "You can purchase foreign exchange up to 60 days in advance from the date of departure.",
|
| 134 |
+
"retrieval_success": false,
|
| 135 |
+
"correct": true,
|
| 136 |
+
"hallucinated": false
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"query": "Whom should I contact if my Card is lost or stolen",
|
| 140 |
+
"expected": "Immediately report the loss of your M&N Bank Multi Currency ForexPlus Platinum Card by calling M&N Bank PhoneBanking. You will not be liable for transactions on your Card Account (if any) from the moment card loss is registered with the bank. You can also hotlist the card by using NetBanking services.",
|
| 141 |
+
"predicted": "Could you tell me more about what you're looking for? Are you referring to a specific person, like an account holder, and asking whom they should contact in case their card is lost or stolen?",
|
| 142 |
+
"retrieval_success": false,
|
| 143 |
+
"correct": false,
|
| 144 |
+
"hallucinated": true
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"query": "If I have just received a renewed card, do I need to re-register",
|
| 148 |
+
"expected": "No, you do not have to re-register your renewed card since the card number remains the same. You need to re-register only if your card number has changed due to card replacement/ re-issue/ upgrade.",
|
| 149 |
+
"predicted": "No, prior registration is not necessary for an OTP transaction.",
|
| 150 |
+
"retrieval_success": false,
|
| 151 |
+
"correct": false,
|
| 152 |
+
"hallucinated": true
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"query": "How long is the tenure of the loan (Education Loans For Indian Education)",
|
| 156 |
+
"expected": "The maximum repayment tenures are as below: For loans upto Rs. 7.50 lacs - upto 10 years For loans above Rs. 7.50 lacs - upto 15 years",
|
| 157 |
+
"predicted": "The maximum tenure of the loan can be 7 years, including the Moratorium period.",
|
| 158 |
+
"retrieval_success": false,
|
| 159 |
+
"correct": false,
|
| 160 |
+
"hallucinated": true
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"query": "Which cars can be financed for Loan against Car",
|
| 164 |
+
"expected": "Any Hatchbacks and Sedans, excluding some models that are out of production can be financed. To know more give us a call or visit a branch.",
|
| 165 |
+
"predicted": "I don't have information on that.",
|
| 166 |
+
"retrieval_success": false,
|
| 167 |
+
"correct": false,
|
| 168 |
+
"hallucinated": true
|
| 169 |
+
},
|
| 170 |
+
{
|
| 171 |
+
"query": "How long will it take to process the loan",
|
| 172 |
+
"expected": "The loan gets processed within 48 hours of completing documentation.",
|
| 173 |
+
"predicted": "Once you submit your application form and the required documents as per Bank's criteria, you can expect our approval and disbursal within 5 working days, provided everything is in order. All loan approvals are at the sole discretion of the bank.",
|
| 174 |
+
"retrieval_success": false,
|
| 175 |
+
"correct": false,
|
| 176 |
+
"hallucinated": true
|
| 177 |
+
},
|
| 178 |
+
{
|
| 179 |
+
"query": "What is the difference between 3D Life and 3D Life Long Protection options",
|
| 180 |
+
"expected": "In addition to the benefits under 3D Life Option, Life Assured is covered for whole life under 3D Life Long Protection option. Premiums under this option have to be paid only till an age of 65.",
|
| 181 |
+
"predicted": "The context doesn't explicitly state the differences between 3D Life and 3D Life Long Protection options, but it does mention that both have a Waiver of Premium benefit if the Life Assured is diagnosed with any of the 34 covered Critical Illnesses. However, I can infer from the context that there might be some additional features or benefits associated with each option.\n\nTo clarify, could you tell me more about what you're looking for in terms of differences between these two options?",
|
| 182 |
+
"retrieval_success": false,
|
| 183 |
+
"correct": false,
|
| 184 |
+
"hallucinated": true
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"query": "What are the fund options",
|
| 188 |
+
"expected": "The plan offers 8 Funds (including 4 New Funds) of varying risk and return profiles. The Policyholder has the option to choose any one or more funds based on his/her Risk Appetite. The Fund Options available under the Plan are Equity Plus Fund, Diversified Equity Fund, BlueChip Fund, Opportunities Fund, Balanced Fund, Income Fund, Bond Fund and Conservative Fund",
|
| 189 |
+
"predicted": "The plan offers 4 funds of varying risk & return profiles. Income Fund, Balanced Fund, BlueChip Fund and Opportunities Fund",
|
| 190 |
+
"retrieval_success": false,
|
| 191 |
+
"correct": false,
|
| 192 |
+
"hallucinated": true
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"query": "What does 'Moratorium period' mean (Education Loans For Foreign Education)",
|
| 196 |
+
"expected": "A repayment moratorium (also called a repayment holiday) is the course work period + 1 year or 6 months after the student gets a job or starts earning, whichever is earlier.",
|
| 197 |
+
"predicted": "I don't have information on that.",
|
| 198 |
+
"retrieval_success": false,
|
| 199 |
+
"correct": false,
|
| 200 |
+
"hallucinated": true
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"query": "How do I know my application has been accepted",
|
| 204 |
+
"expected": "You can check your account opening status on www.M&N sec.com on the footer page of the homepage section page under the Application status.",
|
| 205 |
+
"predicted": "According to our previous information, you will be informed once your application is accepted. However, it's not specified how this notification would be received. Could you tell me more about what you're looking for? Would you like to know if there's a specific contact method or timeframe for receiving the acceptance notification?",
|
| 206 |
+
"retrieval_success": false,
|
| 207 |
+
"correct": false,
|
| 208 |
+
"hallucinated": true
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"query": "Do I have the option of pre-paying the entire loan amount",
|
| 212 |
+
"expected": "Yes. One can pre-pay the loan any time after 6 months of availing of the loan. One merely has to pay a small prepayment fee on the outstanding loan amount.",
|
| 213 |
+
"predicted": "Yes, you can pre-pay the loan any time after 6 months of availing of the loan. You just have to pay a small pre-payment fee on the outstanding loan amount.",
|
| 214 |
+
"retrieval_success": false,
|
| 215 |
+
"correct": true,
|
| 216 |
+
"hallucinated": false
|
| 217 |
+
},
|
| 218 |
+
{
|
| 219 |
+
"query": "How do I obtain a NOC from the bank if I have lost my Registration Certificate book for a vehicle under finance with M&N Bank",
|
| 220 |
+
"expected": "You may obtain the NOC for a duplicate Registration Certificate book for your vehicle loan, by visiting any of our Retail Loan Service Center and submitting the following documents: Request form for applying for the required NOC. Self-attested copy of the Registration Certificate book, duly self-attested by you for validation. Copy of FIR or certificate from police or Acknowledgement from Police on written complaint with General Diary No. Applicable fee of Rs. 500/- vide a cheque/payorder/demand draft favouring M&N Bank Ltd Loan Account No. << >>. In case a bearer submits the request on your behalf, a bearer authorisation along with KYC documents(self attested copy and original for validation) of the bearer,i.e. Identity and Signature Proof like PAN Card, Aadhar Card, Driving License or Passport Copy will also need to be provided.",
|
| 221 |
+
"predicted": "You may obtain the NOC for a duplicate Registration Certificate book for your vehicle loan, by visiting any of our Retail Loan Service Center and submitting the following documents: Request form for applying for the required NOC. Self attested copy of the lost Registration Certificate book, duly self attested by you, along with the Original Registration Certificate book for validation. Applicable fee of Rs. 500/- vide a cheque/payorder/demand draft favouring M&N Bank Ltd Loan Account No. << >>. In case a bearer submits the request on your behalf, a bearer authorisation along with KYC documents(self attested copy and original for validation) of the bearer, i.e. Identity and Signature Proof like PAN Card, Aadhar Card, Driving License or Passport Copy will also need to be provided.",
|
| 222 |
+
"retrieval_success": false,
|
| 223 |
+
"correct": true,
|
| 224 |
+
"hallucinated": false
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"query": "What Property can be considered as collateral for LAP",
|
| 228 |
+
"expected": "You can provide your self-occupied Residential or Commercial property (Shops and Offices) as collateral.",
|
| 229 |
+
"predicted": "You can provide Residential or Commercial Property (Shops & Offices) leased to reputed lessees as collateral for a Loan Against Property (LAP).",
|
| 230 |
+
"retrieval_success": false,
|
| 231 |
+
"correct": true,
|
| 232 |
+
"hallucinated": false
|
| 233 |
+
},
|
| 234 |
+
{
|
| 235 |
+
"query": "How much time will it take to change the mode of repayment/ account for repayment of my loan",
|
| 236 |
+
"expected": "It will take 25 working days to activate the revised instructions. In case your next installment falls due prior to the said date, instruction already lodged with us will be presented for payment.",
|
| 237 |
+
"predicted": "It will take 25 working days to activate the revised instructions. In case your next instalment falls due prior to the 25 day period, instructions already lodged with us will be presented for payment.",
|
| 238 |
+
"retrieval_success": false,
|
| 239 |
+
"correct": true,
|
| 240 |
+
"hallucinated": false
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"query": "What is the maximum value for which the Card can be used",
|
| 244 |
+
"expected": "There is no limit imposed on the usage of Hajj Umrah ForexPlus card. Customers can withdraw/utilise any amount up to the value loaded on Hajj Umrah ForexPlus card at any ATM/POS. However, there are some ATMs service providers which have put in per day / per transaction limit towards cash dispense which cannot be changed by M&N Bank. In such cases the cardholder might need to do multiple transactions if he wants to withdraw any amount higher than that allowed in one transaction.",
|
| 245 |
+
"predicted": "There is no limit imposed on the usage of ForexPlus Chip Card. Customer's can withdraw/utilise any amount, upto the value loaded on ForexPlus Chip card at any ATM/POS. However, there are some ATMs service providers which have put in per day / per transaction limit towards cash dispense which cannot be changed by the Bank. In such cases the cardholder might need to do multiple transactions if he wants to withdraw any amount higher than that allowed in one transaction.",
|
| 246 |
+
"retrieval_success": false,
|
| 247 |
+
"correct": true,
|
| 248 |
+
"hallucinated": false
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"query": "I do not have a Bank account with M&N Bank. Can I still apply through your Bank for IPOs using M&N Bank`s ASBA process",
|
| 252 |
+
"expected": "To apply for an IPO from M&N Bank using ASBA, you should have an account with the Bank. However, it is not compulsory for you to have a Demat Account.",
|
| 253 |
+
"predicted": "Could you tell me more about what you're looking for? Are you referring to a specific account type or product that would allow you to use M&N Bank's ASBA process, even if it's not with an M&N Bank account?",
|
| 254 |
+
"retrieval_success": false,
|
| 255 |
+
"correct": false,
|
| 256 |
+
"hallucinated": true
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"query": "FD",
|
| 260 |
+
"expected": "7%",
|
| 261 |
+
"predicted": "It seems like you're referring to a specific type of account or product. Are you referring to a Fixed Deposit (FD)?",
|
| 262 |
+
"retrieval_success": false,
|
| 263 |
+
"correct": false,
|
| 264 |
+
"hallucinated": true
|
| 265 |
+
},
|
| 266 |
+
{
|
| 267 |
+
"query": "How soon can I get an eGiftPlus Card",
|
| 268 |
+
"expected": "The beneficiary will get a real-time instant delivery of the M&N Bank eGiftPlus Card",
|
| 269 |
+
"predicted": "I don't have information on that.",
|
| 270 |
+
"retrieval_success": false,
|
| 271 |
+
"correct": false,
|
| 272 |
+
"hallucinated": true
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"query": "I don't see my Personal Assurance Message on the Secure page . What should I do",
|
| 276 |
+
"expected": "Always look for your Personal Assurance Message before entering your Verified by Visa / MasterCard Securecode password. If your Personal Assurance Message does not appear on the secure page, do not enter your password. Please contact our Customer Care Center and update the same.",
|
| 277 |
+
"predicted": "Could you tell me more about what's happening when you try to access the Secure page? Are you getting an error message or is it just not appearing at all?",
|
| 278 |
+
"retrieval_success": false,
|
| 279 |
+
"correct": false,
|
| 280 |
+
"hallucinated": true
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"query": "In what transactions is the One Time Password (IVR Password ) process applicable",
|
| 284 |
+
"expected": "The IVR Password process is applicable only for Credit Cards for: Registration through M&N Bank website Registration during online shopping Password re-set through website Password re-set while shopping online View more",
|
| 285 |
+
"predicted": "The One Time Password (IVR Password) process is applicable for telephonic transactions made using your mobile or telephone.",
|
| 286 |
+
"retrieval_success": false,
|
| 287 |
+
"correct": false,
|
| 288 |
+
"hallucinated": true
|
| 289 |
+
},
|
| 290 |
+
{
|
| 291 |
+
"query": "What is the maximum value for which the Card can be used",
|
| 292 |
+
"expected": "There is no limit imposed on the usage of ForexPlus card. Customer's can withdraw/utilise any amount, upto the value loaded on card at any ATM/POS. However, there are some ATMs service providers which have put in per day / per transaction limit towards cash dispense which cannot be changed by the Bank. In such cases the cardholder might need to do multiple transactions if he wants to withdraw any amount higher than that allowed in one transaction.",
|
| 293 |
+
"predicted": "There is no limit imposed on the usage of ForexPlus Chip Card. Customer's can withdraw/utilise any amount, upto the value loaded on ForexPlus Chip card at any ATM/POS. However, there are some ATMs service providers which have put in per day / per transaction limit towards cash dispense which cannot be changed by the Bank. In such cases the cardholder might need to do multiple transactions if he wants to withdraw any amount higher than that allowed in one transaction.",
|
| 294 |
+
"retrieval_success": false,
|
| 295 |
+
"correct": true,
|
| 296 |
+
"hallucinated": false
|
| 297 |
+
},
|
| 298 |
+
{
|
| 299 |
+
"query": "What do you mean by pre-existing diseases",
|
| 300 |
+
"expected": "Any condition, ailment, injury of related condition(s) for which the insured person has had signs or symptoms and/or was diagnosed and/or has received medical advice/treatment within 48 months prior to the insureds first policy with the company.",
|
| 301 |
+
"predicted": "According to our policy terms, a pre-existing disease is any condition, ailment, injury or related condition for which the insured person had signs or symptoms and/or was diagnosed and/or received medical advice or treatment prior to the first policy with us.",
|
| 302 |
+
"retrieval_success": false,
|
| 303 |
+
"correct": true,
|
| 304 |
+
"hallucinated": false
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"query": "What are the charges I have to pay to change the mode of repayment/ account for my loan",
|
| 308 |
+
"expected": "A service charge of Rs.500 is applicable for changes in loan repayment instructions issued from non-M&N Bank Account (ECS or PDC facility). A cheque/payorder/demand draft for Rs. 500 favouring M&N Bank Ltd Loan Account No. << >> will be required along with the revised set of repayment instructions.",
|
| 309 |
+
"predicted": "A service charge of Rs.500 is applicable for changes in loan repayment instructions issued from non-M&N Bank Account (ECS or PDC facility). A cheque/payorder/demand draft for Rs. 500 favouring M&N Bank Ltd Loan Account No. << >> will be required along with the revised set of repayment instructions",
|
| 310 |
+
"retrieval_success": false,
|
| 311 |
+
"correct": true,
|
| 312 |
+
"hallucinated": false
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"query": "What is the time frame to resolve Domestic ATM transaction disputes",
|
| 316 |
+
"expected": "7 working days from receipt of the dispute.",
|
| 317 |
+
"predicted": "Approximately 45 to 120 days from receipt of the dispute depending upon the relevant franchise's ( e.g. Visa / Master / Rupay / Diners etc.) dispute resolution cycle.",
|
| 318 |
+
"retrieval_success": false,
|
| 319 |
+
"correct": false,
|
| 320 |
+
"hallucinated": true
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"query": "Who can open an RFC Domestic Account",
|
| 324 |
+
"expected": "Any person who is a resident Indian can open an RFC Domestic account, as long as the foreign exchange earned is in line with the permissible credits as defined in the RBI circular.",
|
| 325 |
+
"predicted": "An RFC Domestic Account can be opened by a resident individual.",
|
| 326 |
+
"retrieval_success": false,
|
| 327 |
+
"correct": false,
|
| 328 |
+
"hallucinated": true
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"query": "Where can I use my EasyShop International Debit Card",
|
| 332 |
+
"expected": "Anywhere you see the Visa logo, and at any ATM displaying the Visa or PLUS logo. Remember, your card can be used at all M&N Bank ATMs just like a normal ATM card.",
|
| 333 |
+
"predicted": "I don't have information on that.",
|
| 334 |
+
"retrieval_success": false,
|
| 335 |
+
"correct": false,
|
| 336 |
+
"hallucinated": true
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"query": "How do I top-up the value of my card when I am abroad",
|
| 340 |
+
"expected": "ForexPlus Chip card can also be loaded on your behalf by someone authorized by you. Authorised person has to visit M&N Bank branch with the necessary documents and funds. Well take care of the rest.",
|
| 341 |
+
"predicted": "ISIC M&N Bank ForexPlus Card can also be loaded on your behalf by someone authorized (blood relatives only) by you. Authorised person has to visit M&N Bank branch with the necessary documents and funds. Well take care of the rest. You can reload your ISIC ForexPlus Card multiple times in future till the card gets expired: You can authorize the Bank to debit your M&N Bank account by giving an M&N Bank cheque or make payment using a local cheque drawn on M&N Bank and reload the card for desired value. Reload requests can be made by any authorized person (blood relatives only) on your behalf. The person authorised by you for the same will need to come to bank branch and will need to provide the necessary documents to the bank to carry out reload. On receipt of the application form and the funds, your card will get reloaded for the desired amount. M&N Bank customers can also place a request to reload the card through M&N Bank PhoneBanking or M&N Bank NetBanking.",
|
| 342 |
+
"retrieval_success": false,
|
| 343 |
+
"correct": false,
|
| 344 |
+
"hallucinated": true
|
| 345 |
+
},
|
| 346 |
+
{
|
| 347 |
+
"query": "What is pre-EMI interest",
|
| 348 |
+
"expected": "Pending final disbursement, you pay interest on the portion of the loan disbursed. This interest is called pre-EMI interest. Pre-EMI interest is payable every month from the date of each disbursement up to the date of commencement of EMI. *Conditions apply. All Home Loans from M&N Ltd. Credit at sole discretion of M&N Ltd.",
|
| 349 |
+
"predicted": "Could you tell me more about what you're looking for? Are you referring to a specific type of loan or product where pre-EMI interest applies?",
|
| 350 |
+
"retrieval_success": false,
|
| 351 |
+
"correct": false,
|
| 352 |
+
"hallucinated": true
|
| 353 |
+
},
|
| 354 |
+
{
|
| 355 |
+
"query": "How much is the Service Tax on Cross Currency Conversion, applicable at the time of Load, Reload and Refund",
|
| 356 |
+
"expected": "Following are the currency conversion service tax slabs applicable at the time of Load, Reload and Refund. For more details on other charges applicable on Regalia ForexPlus Card refer section Fees and Charges Buy and Sell Forex CurrencyService Tax Amount Up to Rs. 1 lakh 0.15% of the gross value or Rs. 37.5/- whichever is higher From Rs. 1 lakh to Rs 10 Lakhs Rs. 150 plus 0.075% of the amount exceeding Rs. 1 lakh From Rs. 10 lakhs and above Rs. 825 plus 0.015% of the amount exceeding Rs. 10 Lakhs, subject to a maximum of Rs. 7500 (including Swachh Bharat Cess and Krishi Kalyan cess as applicable)",
|
| 357 |
+
"predicted": "I don't have information on that.",
|
| 358 |
+
"retrieval_success": false,
|
| 359 |
+
"correct": false,
|
| 360 |
+
"hallucinated": true
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"query": "When do I start paying my EMI",
|
| 364 |
+
"expected": "Credilas unique education loan offers the flexibility of paying only simple interest (PEMI) during the course period and principle plus interest (EMI) after the completion of studies and grace period.",
|
| 365 |
+
"predicted": "You typically start paying your EMI after 6 months from the date of loan disbursal, as per the terms and conditions of your loan agreement. However, please check your loan agreement or contact us for specific details on your loan.",
|
| 366 |
+
"retrieval_success": false,
|
| 367 |
+
"correct": false,
|
| 368 |
+
"hallucinated": true
|
| 369 |
+
},
|
| 370 |
+
{
|
| 371 |
+
"query": "Why can't I have liquidity of complete amount on surrender",
|
| 372 |
+
"expected": "The plan aims to help in creating fund for retirement. Annuitisation of surrender benefit is mandated by the Regulator in the interest of the customer. Annuitisation ensures that the aim of the policy is not compromised for other financial needs.",
|
| 373 |
+
"predicted": "It seems that there is a specific reason why you cannot have liquidity of the complete amount on surrender. However, I'd like to clarify what you mean by \"complete amount\". Are you referring to the full policy value or something else?",
|
| 374 |
+
"retrieval_success": false,
|
| 375 |
+
"correct": false,
|
| 376 |
+
"hallucinated": true
|
| 377 |
+
},
|
| 378 |
+
{
|
| 379 |
+
"query": "What is the minimum balance that I need to maintain in a Max Current Account",
|
| 380 |
+
"expected": "You need to maintain an Average Quarterly Balance of Rs. 5,00,000 in your Max Current account.",
|
| 381 |
+
"predicted": "I don't have information on that.",
|
| 382 |
+
"retrieval_success": false,
|
| 383 |
+
"correct": false,
|
| 384 |
+
"hallucinated": true
|
| 385 |
+
},
|
| 386 |
+
{
|
| 387 |
+
"query": "What happens if my card is lost",
|
| 388 |
+
"expected": "In case your card gets lost or stolen, all you have to do is call M&N Bank PhoneBanking immediately and report the loss of your card. This facility is available 24 hrs on all days. The card can also be hotlisted using our Prepaid card NetBanking facility on www.M&N bank.com",
|
| 389 |
+
"predicted": "You can contact the below mentioned Customer Care number 022-33271010 or e-mail",
|
| 390 |
+
"retrieval_success": false,
|
| 391 |
+
"correct": false,
|
| 392 |
+
"hallucinated": true
|
| 393 |
+
},
|
| 394 |
+
{
|
| 395 |
+
"query": "What is the M&N Bank Hajj Umrah ForexPlus card",
|
| 396 |
+
"expected": "The M&N Bank Hajj Umrah ForexPlus card is an embedded Chip based Prepaid Forex card introduced in partnership with VISA International. It is the first card exclusively designed for Hajj Umrah pilgrims to carry currency in a convenient and secure way. The card holders are also entitled for exclusive discounts & gift voucher at select merchant outlets in Saudi Arabia. The card can be used at all VISA ATMs and merchant establishments worldwide. This card cannot be used for payments in India, Nepal or Bhutan.",
|
| 397 |
+
"predicted": "The M&N Bank Hajj Umrah ForexPlus card is a prepaid forex card designed to facilitate easy and convenient transactions for pilgrims traveling to Saudi Arabia for Hajj or Umrah. It allows users to load foreign currency, which can be used to make payments at merchant establishments displaying the Visa symbol, withdraw cash from ATMs worldwide, and perform other international transactions.",
|
| 398 |
+
"retrieval_success": false,
|
| 399 |
+
"correct": false,
|
| 400 |
+
"hallucinated": true
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"query": "Do I need a guarantor",
|
| 404 |
+
"expected": "No, but in case if you don't meet the Bank's norms then you may be required to have a guarantor surety. A guarantor becomes a co-endorser and assumes liability in event of default. To stand surety for your loan.",
|
| 405 |
+
"predicted": "No. The car itself acts as a security.",
|
| 406 |
+
"retrieval_success": false,
|
| 407 |
+
"correct": false,
|
| 408 |
+
"hallucinated": true
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"query": "When does the plan acquire Guaranteed Surrender value",
|
| 412 |
+
"expected": "The policy will acquire a Guaranteed Surrender Value (GSV) provided 2 full years premium has been paid for premium payment term of 7 years and 3 full years premium have been paid for premium payment term of 10 years or more.",
|
| 413 |
+
"predicted": "The policy will acquire a Guaranteed Surrender Value (GSV) provided 2 full years premium has been paid. The GSV shall be aggregate of: Percentage of total premiums paid Percentage of accrued bonuses and accrued guaranteed additions Please refer the sales brochure or contact your Relationship manager to know the percentage factors for GSV",
|
| 414 |
+
"retrieval_success": false,
|
| 415 |
+
"correct": false,
|
| 416 |
+
"hallucinated": true
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"query": "Where do I get this card",
|
| 420 |
+
"expected": "ForexPlus card is available over the counter at M&N Bank branches. You simply need to walk into our branch with required documentation and walk out with ForexPlus card. The card will get activated within 4 hours from realization of funds. Alternatively, the customer can apply for card through NetBanking login also.In case the customer applies the card through NetBanking the card will be delivered to the customer within 2 working days. This facility is available at select locations only.",
|
| 421 |
+
"predicted": "ISIC ForexPlus Card is available over the counter at M&N Bank branches. You simply need to walk into our branch with required documentation and walk out with ISIC ForexPlus Card. The card will get activated within 4 hours from realization of funds. Also you can apply by visiting www.M&N bank.com -> Apply Online section or www.M&N bank.com/personal/products/cards/prepaid-cards -> ISIC Student ID ForexPlus Card -> Buy Forex Card",
|
| 422 |
+
"retrieval_success": false,
|
| 423 |
+
"correct": false,
|
| 424 |
+
"hallucinated": true
|
| 425 |
+
},
|
| 426 |
+
{
|
| 427 |
+
"query": "How many times of my annual salary can I borrow with M&N Bank Auto Loan",
|
| 428 |
+
"expected": "You can borrow up to 3 times your annual salary if you are a salaried professional and 6 times your annual income if you are a self-employed professional **. **This would also vary with higher loan value",
|
| 429 |
+
"predicted": "I don't have information on that.",
|
| 430 |
+
"retrieval_success": false,
|
| 431 |
+
"correct": false,
|
| 432 |
+
"hallucinated": true
|
| 433 |
+
},
|
| 434 |
+
{
|
| 435 |
+
"query": "Are there charges I should know about International Debit Card",
|
| 436 |
+
"expected": "Another benefit of the EasyShop Platinum Debit card is that there are absolutely no transaction charges to when shopping at a merchant location. Fuel surcharge levied at select BPCL petrol pumps will be reversed within 75 days from the date of levy of the surcharge. Just make sure your card is swiped at M&N Banks terminal to avail petrol surcharge waiver. You can use your card charge-free at all M&N Bank ATMs, but remember to check the associated fees when using other bank ATMs. Please also remember that charges will be levied at Railway stations. This is as per industry practice. View more",
|
| 437 |
+
"predicted": "You can be sure that there are no transaction charges when using your card at a merchant location. There are also no petrol surcharges, or fees for using an M&N Bank ATM. Just remember to check for usage charge information if you access other bank ATMs.",
|
| 438 |
+
"retrieval_success": false,
|
| 439 |
+
"correct": false,
|
| 440 |
+
"hallucinated": true
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"query": "If I don't have an account with M&N Bank, can I still avail of Pre-owned Car Loans",
|
| 444 |
+
"expected": "Repayment is preferred from a M&N Bank account. Having an account with M&N Bank helps in better eligibility and approval rates.",
|
| 445 |
+
"predicted": "Yes, you can get a Pre-owned Car Loan from M&N Bank even if you don't have an account with us.",
|
| 446 |
+
"retrieval_success": false,
|
| 447 |
+
"correct": false,
|
| 448 |
+
"hallucinated": true
|
| 449 |
+
},
|
| 450 |
+
{
|
| 451 |
+
"query": "What should I do in the case of a void transaction for Titanium Royale Debit Card",
|
| 452 |
+
"expected": "Just fax us a copy of the void transaction slip. You can also send it to or submit the same at your nearest M&N Bank branch. For PhoneBanking numbers Click Here .",
|
| 453 |
+
"predicted": "I don't have information on that.",
|
| 454 |
+
"retrieval_success": false,
|
| 455 |
+
"correct": false,
|
| 456 |
+
"hallucinated": true
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"query": "What is the Policy Term available in this plan",
|
| 460 |
+
"expected": "Capital Shield provides a Policy Term of 10 years.",
|
| 461 |
+
"predicted": "Policy Term of 10 to 40 years is available under the plan.",
|
| 462 |
+
"retrieval_success": false,
|
| 463 |
+
"correct": false,
|
| 464 |
+
"hallucinated": true
|
| 465 |
+
},
|
| 466 |
+
{
|
| 467 |
+
"query": "Can I surrender this policy",
|
| 468 |
+
"expected": "Yes you can surrender your policy. Once you surrender your policy, your risk cover will cease and surrender benefit will be paid out depending upon the year in which the policy is surrendered. Please refer to product brochure for more details.",
|
| 469 |
+
"predicted": "You can surrender your policy subject to a lock in period of 5 years. No discontinuance charge is charged in this policy. Please refer to product brochure for more details on discontinuance of premiums and surrender of policy.",
|
| 470 |
+
"retrieval_success": false,
|
| 471 |
+
"correct": false,
|
| 472 |
+
"hallucinated": true
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"query": "What should I do in case I am unable to access my Company's Current Account through Net Banking",
|
| 476 |
+
"expected": "If you are unable to access your company account, it may be because you have entered an incorrect Customer Identification Number (Cust ID) to log into your NetBanking Account. While opening Accounts of Companies, separate Customer IDs are created in name of the Company as well as each of the Authorised Signatory(ies). The latter is distinct and has to be used to access NetBanking for the Company's Account. However, we regret our inability to disclose the appropriate Customer ID on an unsecure e-mail and request you to contact our nearest Branch or PhoneBanking Center for this.For more details, Contact Us",
|
| 477 |
+
"predicted": "If you are unable to access your company account, it may be because you have entered an incorrect Customer Identification Number (Cust ID) to log into your NetBanking Account. While opening Accounts of Companies, separate Customer IDs are created in name of the Company as well as each of the Authorized Signatory(ies). The latter is distinct and has to be used to access NetBanking for the Company's Account. However, we regret our inability to disclose the appropriate Customer ID on an unsecure e-mail and request you to contact our nearest Branch or PhoneBanking Center for this. For more details, Contact Us",
|
| 478 |
+
"retrieval_success": false,
|
| 479 |
+
"correct": true,
|
| 480 |
+
"hallucinated": false
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"query": "What is the Policy term/Premium payment term",
|
| 484 |
+
"expected": "Policy Term 10 Year Premium Payment Term Single",
|
| 485 |
+
"predicted": "The fixed policy term available under this product is 5 years, and you shall only pay premiums for the benefit(s) as long as the complete payout for that benefit has not happened.",
|
| 486 |
+
"retrieval_success": false,
|
| 487 |
+
"correct": false,
|
| 488 |
+
"hallucinated": true
|
| 489 |
+
},
|
| 490 |
+
{
|
| 491 |
+
"query": "Should I visit a PoS personally to obtain KYC Compliance",
|
| 492 |
+
"expected": "No. If you are not in a position to visit a PoS personally, the KYC Application Form along with the necessary documents (including originals if the copies are not attested) can be sent through the distributor or representative who can arrange to complete the KYC process and obtain the KYC Acknowledgement through any PoS.",
|
| 493 |
+
"predicted": "Currently, KYC is done for free of cost.",
|
| 494 |
+
"retrieval_success": false,
|
| 495 |
+
"correct": false,
|
| 496 |
+
"hallucinated": true
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"query": "Do I need to pay additional amount over and above Cash withdrawal Charges levied by the M&N Bank for ATM transaction",
|
| 500 |
+
"expected": "In certain countries ATM Service providers are authorized to charge surcharge/convenience fees from the cardholders for accessing the ATM to withdraw money. These charges are levied by the ATM service provider over and above the charges levied by the M&N Bank, and M&N Bank bank has no control over the charges as these charges are not levied by the bank.These charges are normally displayed to the customer during the transaction and the customer has the option to either proceed with the transaction or abort if the charges are not acceptable to the customer.",
|
| 501 |
+
"predicted": "In certain countries, ATM Service providers are authorized to charge surcharge/convenience fees from the cardholders for accessing the ATM to withdraw money. These charges are levied by the ATM service provider over and above the charges levied by the M&N Bank, and M&N Bank has no control over the charges as these charges are not levied by the bank.",
|
| 502 |
+
"retrieval_success": false,
|
| 503 |
+
"correct": true,
|
| 504 |
+
"hallucinated": false
|
| 505 |
+
},
|
| 506 |
+
{
|
| 507 |
+
"query": "Whom should I approach for any other service related to M&N Bank Fixed Deposits",
|
| 508 |
+
"expected": "For any other service related to Fixed Deposits (Supersaver or Sweep-In Facility, addition of Nominee, Change in Maturity Instructions, Premature Encashment etc.) you may approach the nearest M&N Bank Branch with the Fixed Deposit advice and the request Form duly signed by all account holders.",
|
| 509 |
+
"predicted": "For any other service related to M&N Bank Fixed Deposits, you can write to us at www.M&N bank.com/services or contact your nearest PhoneBanking officer.",
|
| 510 |
+
"retrieval_success": false,
|
| 511 |
+
"correct": false,
|
| 512 |
+
"hallucinated": true
|
| 513 |
+
},
|
| 514 |
+
{
|
| 515 |
+
"query": "Can I use my Medical benefit card outside India",
|
| 516 |
+
"expected": "No. Medical Benefit card is INR prepaid card which can be used only in India.",
|
| 517 |
+
"predicted": "I don't have information on that.",
|
| 518 |
+
"retrieval_success": false,
|
| 519 |
+
"correct": false,
|
| 520 |
+
"hallucinated": true
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"query": "How do I obtain a duplicate NOC/Form 35 for a vehicle loan that has been closed and fully repaid",
|
| 524 |
+
"expected": "You may obtain a duplicate NOC/Form 35 for your vehicle by visiting any of our the Retail Loan Service Center and submit the following documents: Request form for Duplicate NOC/Form 35. Self attested copy of the Registration Certificate book, duly self attested by you, along with the Original Registration Certificate book for validation. Applicable fee of Rs. 500/- vide a cheque/payorder/demand draft favouring M&N Bank Ltd Loan Account No. << >>. In case a bearer submits the request on your behalf, a bearer authorisation along with KYC documents(self attested copy and original for validation) of the bearer,i.e. Identity and Signature Proof like PAN Card, Aadhar Card, Driving License or Passport Copy will also need to be provided. Please note that the Loan Closure NOC/Form 35 will not be issued if any of the following conditions apply: Copy of RC Book is not submitted The same vehicle is encumbered to the Bank for any other loan facility Any notice from a competent authority restraining the Bank from release of hypothecation If there are any existing over dues, direct or otherwise, in your name",
|
| 525 |
+
"predicted": "You may obtain a duplicate NOC/Form 35 for your vehicle by visiting any of our the Retail Loan Service Center and submit the following documents: Request form for Duplicate NOC/Form 35. Self attested copy of the Registration Certificate book, duly self attested by you, along with the Original Registration Certificate book for validation. Applicable fee of Rs. 500/- vide a cheque/payorder/demand draft favouring M&N Bank Ltd Loan Account No. << >>. In case a bearer submits the request on your behalf, a bearer authorisation along with KYC documents(self attested copy and original for validation) of the bearer,i.e. Identity and Signature Proof like PAN Card, Aadhar Card, Driving License or Passport Copy will also need to be provided.",
|
| 526 |
+
"retrieval_success": false,
|
| 527 |
+
"correct": true,
|
| 528 |
+
"hallucinated": false
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"query": "What happens if Premiums are not paid",
|
| 532 |
+
"expected": "This plan has a grace period of 30 days. You are expected to pay your annual premium through-out the policy term. Discontinuance before completion of 5 years from commencement of the policy: If you have not paid your premium by the expiry of the grace period, then you will have the following options: To revive the policy within a period of 2 years from the date of discontinuance, or To completely withdraw from the policy without any risk cover Your policy will be discontinued if: You do not exercise any of the above mentioned options; or You choose to completely withdraw from the policy without any risk cover Until the discontinuance of the policy, the risk cover will remain in-force and policy charges will continue to be deducted. Once the policy is discontinued, the risk cover will cease and the fund value (as on date of discontinuance) less the applicable Discontinuance Charge (Please see the Charges section for details of the Discontinuance Charges) will be moved to the 'Discontinued Policy Fund'. The minimum guaranteed interest rate applicable to the 'Discontinued Policy Fund' shall be 4% p.a. Such rate may be changed in the future if the IRDA revises the minimum rate for discontinued policies. The Discontinued Policy Fund (SFIN: ULIF05110/03/11DiscontdPF101) shall be a unit fund which will invest 100% of assets in Government Securities and/or Money Market Instruments. Any excess income earned in the discontinued fund over and above the minimum guaranteed interest rate shall also be apportioned to the 'Discontinued Policy Fund'. A Fund Management Charge of 0.50% p.a. will be levied for amounts in the 'Discontinued Policy Fund' If a discontinued policy is not revived, the proceeds will be paid out upon the completion of the lock-in period of five years. In the instances where the revival period is not completed at the end of the lock-in period, the policyholder can opt to receive the proceeds either upon the completion of the lock-in period or upon the completion of revival period. If, in such cases, the policyholder does not exercise any option, then the proceeds will be paid upon the completion of the lock-in period. After the payment of the discontinuance benefit, the policy shall terminate and no further benefits shall be payable under the policy. View more",
|
| 533 |
+
"predicted": "In case the Policyholder has not paid the premium by the expiry of the grace period, he/she will have the following options: to revive the Policy within a period of 2 years from the date of discontinuance, or to completely withdraw from the Policy without any risk cover, or to convert the policy into paid-up policy (available only on discontinuance after completion of the 5 policy years)",
|
| 534 |
+
"retrieval_success": false,
|
| 535 |
+
"correct": false,
|
| 536 |
+
"hallucinated": true
|
| 537 |
+
},
|
| 538 |
+
{
|
| 539 |
+
"query": "When does my policy acquire a Guaranteed Surrender Value (GSV)",
|
| 540 |
+
"expected": "It is advisable to continue your policy in order to enjoy full benefits of your policy. However, we understand that in certain circumstances you may want to surrender your policy.The policy will acquire a Guaranteed Surrender Value (GSV) provided 2 full years premium has been paid for premium payment term of less than 10 years and 3 full years premium have been paid for premium payment term of 10 years and above.The GSV shall be the aggregate of: Percentage of total premiums paid Percentage of accrued bonuses & accrued guaranteed additions Premiums will exclude any underwriting extra premiums and any taxes paid For details on GSV percentage (factors), please refer to the Product Brochure.",
|
| 541 |
+
"predicted": "The policy will acquire a Guaranteed Surrender Value (GSV) provided 2 full years premium has been paid. The GSV shall be aggregate of: Percentage of total premiums paid Percentage of accrued bonuses and accrued guaranteed additions Please refer the sales brochure or contact your Relationship manager to know the percentage factors for GSV",
|
| 542 |
+
"retrieval_success": false,
|
| 543 |
+
"correct": false,
|
| 544 |
+
"hallucinated": true
|
| 545 |
+
},
|
| 546 |
+
{
|
| 547 |
+
"query": "What is the difference between Income and Income Plus Option",
|
| 548 |
+
"expected": "On the death of the Life Assured under Income Option, 10% of the death benefit is paid as lump sum upon death and the remaining 90% of the death benefit shall be paid as monthly income over next 15 years. On the death of Life Assured under Income Plus Option, 100% of the death benefit is payable as a lump sum benefit and a monthly income of 0.5% of sum assured is paid for 10 years. Also in this option, there is an option to choose Level Income or Increasing Income.",
|
| 549 |
+
"predicted": "I don't have information on that.",
|
| 550 |
+
"retrieval_success": false,
|
| 551 |
+
"correct": false,
|
| 552 |
+
"hallucinated": true
|
| 553 |
+
},
|
| 554 |
+
{
|
| 555 |
+
"query": "How soon can the card be used after it is purchased",
|
| 556 |
+
"expected": "Your card will be activated & loaded with required currency within 4 hours from the bank having received clear funds from you. The card will beready for use post activation.",
|
| 557 |
+
"predicted": "Your card will be activated & loaded with required currency within 4 hours from the bank having received clear funds from you. The card will be ready for use post activation.",
|
| 558 |
+
"retrieval_success": false,
|
| 559 |
+
"correct": true,
|
| 560 |
+
"hallucinated": false
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"query": "What is the initial deposit amount required to open the Flexi Account",
|
| 564 |
+
"expected": "The initial deposit amount to open a Flexi Current account is Rs.75,000.",
|
| 565 |
+
"predicted": "I don't have information on that.",
|
| 566 |
+
"retrieval_success": false,
|
| 567 |
+
"correct": false,
|
| 568 |
+
"hallucinated": true
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"query": "Is my overdraft limit fixed",
|
| 572 |
+
"expected": "This will completely depend on the market rate of the securities that you have pledged. Of course, we will value your portfolio periodically to determine your overdraft limit. You can increase your overdraft limit by pledging more shares/securities , or decrease it by withdrawing them that's completely up to you.",
|
| 573 |
+
"predicted": "No, your overdraft limit is not fixed. It's based on your account performance and salary credits.",
|
| 574 |
+
"retrieval_success": false,
|
| 575 |
+
"correct": false,
|
| 576 |
+
"hallucinated": true
|
| 577 |
+
},
|
| 578 |
+
{
|
| 579 |
+
"query": "What is a settlement option",
|
| 580 |
+
"expected": "Under settlement option, you can also take your fund value at maturity in periodical installments.",
|
| 581 |
+
"predicted": "In our policy, the Settlement Option is when the Fund value is paid in periodical installments over a period which may extend up to 5 years. The value of installment payable on the date specified shall be subject to investment risk i.e. the NAV may go up or down depending upon the performance of the funds chosen by you.",
|
| 582 |
+
"retrieval_success": false,
|
| 583 |
+
"correct": false,
|
| 584 |
+
"hallucinated": true
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"query": "What kind of benefits is my spouse and children entitled to",
|
| 588 |
+
"expected": "100% of the sum insured in case of accidental death, permanent disability, broken bones, burns,Hospital cash of the spouse & 10% of the sum insured in case of accidental death or permanent disability of the children.",
|
| 589 |
+
"predicted": "Under our banking's Family Plan, your spouse and children are eligible for a range of benefits, including life insurance coverage, accidental death and dismemberment (AD&D) protection, and other financial assistance in the event of an unexpected loss.",
|
| 590 |
+
"retrieval_success": false,
|
| 591 |
+
"correct": false,
|
| 592 |
+
"hallucinated": true
|
| 593 |
+
},
|
| 594 |
+
{
|
| 595 |
+
"query": "Can a HUF/ Leased (Mhada/Cidco) property be insured",
|
| 596 |
+
"expected": "If you have financial interest in the property as owner or lessor then you can insure the property.",
|
| 597 |
+
"predicted": "Yes, a HUF (Hindu Succession Act) or leased property can be insured. However, the specific terms and conditions may vary depending on the type of policy and the insurance provider.\n\nIn general, most home insurance policies cover leased properties, including those owned by Mhada (Mumbai Housing Authority) or Cidco (City and Industrial Development Corporation).",
|
| 598 |
+
"retrieval_success": false,
|
| 599 |
+
"correct": false,
|
| 600 |
+
"hallucinated": true
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"query": "How do I top-up the value of my card when I am abroad",
|
| 604 |
+
"expected": "ForexPlus card can also be loaded on your behalf by someone authorized by you. Authorised person has to visit M&N Bank branch with the necessary documents and funds. Well take care of the rest.",
|
| 605 |
+
"predicted": "ISIC M&N Bank ForexPlus Card can also be loaded on your behalf by someone authorized (blood relatives only) by you. Authorised person has to visit M&N Bank branch with the necessary documents and funds. Well take care of the rest. You can reload your ISIC ForexPlus Card multiple times in future till the card gets expired: You can authorize the Bank to debit your M&N Bank account by giving an M&N Bank cheque or make payment using a local cheque drawn on M&N Bank and reload the card for desired value. Reload requests can be made by any authorized person (blood relatives only) on your behalf. The person authorised by you for the same will need to come to bank branch and will need to provide the necessary documents to the bank to carry out reload. On receipt of the application form and the funds, your card will get reloaded for the desired amount. M&N Bank customers can also place a request to reload the card through M&N Bank PhoneBanking or M&N Bank NetBanking.",
|
| 606 |
+
"retrieval_success": false,
|
| 607 |
+
"correct": false,
|
| 608 |
+
"hallucinated": true
|
| 609 |
+
},
|
| 610 |
+
{
|
| 611 |
+
"query": "What is the limited mode of premium pay",
|
| 612 |
+
"expected": "A limited premium payment policy requires you to pay premiums for a term lesser than your policy term.",
|
| 613 |
+
"predicted": "With M&N Life ClassicAssure Plus, you can pay premiums for 7 years for policy terms of 10 and 15 years or pay premiums for 10 years for policy term of 15 and 20 years.",
|
| 614 |
+
"retrieval_success": false,
|
| 615 |
+
"correct": false,
|
| 616 |
+
"hallucinated": true
|
| 617 |
+
},
|
| 618 |
+
{
|
| 619 |
+
"query": "Where do I get this card",
|
| 620 |
+
"expected": "Hajj Umrah ForexPlus Card is available over the counter at M&N Bank branches. You simply need to walk into our branch with required documentation and walk out with the card. The card will get activated within 5 to 6 hours from realization of funds.",
|
| 621 |
+
"predicted": "ISIC ForexPlus Card is available over the counter at M&N Bank branches. You simply need to walk into our branch with required documentation and walk out with ISIC ForexPlus Card. The card will get activated within 4 hours from realization of funds. Also you can apply by visiting www.M&N bank.com -> Apply Online section or www.M&N bank.com/personal/products/cards/prepaid-cards -> ISIC Student ID ForexPlus Card -> Buy Forex Card",
|
| 622 |
+
"retrieval_success": false,
|
| 623 |
+
"correct": true,
|
| 624 |
+
"hallucinated": false
|
| 625 |
+
},
|
| 626 |
+
{
|
| 627 |
+
"query": "How does it work",
|
| 628 |
+
"expected": "The Super Saver Account lets you to withdraw up to 90% of your deposit, just like the liquidity of a Savings Account. Theres no need to break your Fixed Deposit for short term requirements. You can withdraw cash through an ATM or by cheque or teller transactions.",
|
| 629 |
+
"predicted": "Verified by Visa/ MasterCard SecureCode provides you with a Password/ SecureCode that protects your online transactions, just like the way you use your PIN at an ATM. All you need to do is follow the simple steps: Select the goods and services you want from the Verified by Visa (VBV) / SecureCode merchant site and proceed to the payment page. Enter your M&N Bank Debit/ Credit Card number and the online store will connect with M&N Bank to check whether your Card is secured with Verified by Visa/ MasterCard SecureCode. M&N Bank initiates a Verified by Visa/ MasterCard SecureCode pop-up window on your computer screen that includes your Personal Assurance Message (PAM) or Personal Greeting message. Look for and confirm your PAM/ Personal Greeting then enter your password. M&N Bank will then confirm your identity to the merchant. Your payment is authorized and your order is placed.",
|
| 630 |
+
"retrieval_success": false,
|
| 631 |
+
"correct": false,
|
| 632 |
+
"hallucinated": true
|
| 633 |
+
},
|
| 634 |
+
{
|
| 635 |
+
"query": "What do you mean by exclusions under the Accidental Protection Plan - Hospital Cash",
|
| 636 |
+
"expected": "Exclusions are situations or conditions where M&N ERGO is not liable to pay the benefits to the insured person in the event of an accident.",
|
| 637 |
+
"predicted": "Could you tell me more about what you're looking for? Are you referring to a specific exclusion or condition that is not covered under the policy, such as pre-existing medical conditions or certain types of accidents?",
|
| 638 |
+
"retrieval_success": false,
|
| 639 |
+
"correct": false,
|
| 640 |
+
"hallucinated": true
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"query": "Can I repay the loan earlier for Professionals Loan",
|
| 644 |
+
"expected": "Yes, you can choose to repay your loan anytime after 06 months of taking the loan and after you have paid 06 EMIs along with applicable foreclosure charges. Please note Loan can be foreclosed by issuing a Demand draft / cheque at the branch; kindly note that cash beyond Rs. 49000/- will not be accepted for loan repayment against full closure/matured loan closure payment. Any payment above Rs. 49000/- should be made vide Account payee Cheque / Pay order /Demand draft.",
|
| 645 |
+
"predicted": "Yes, you can choose to repay your loan anytime after 12 months of taking the loan and after you have paid 12 EMIs along with applicable foreclosure charges.",
|
| 646 |
+
"retrieval_success": false,
|
| 647 |
+
"correct": false,
|
| 648 |
+
"hallucinated": true
|
| 649 |
+
},
|
| 650 |
+
{
|
| 651 |
+
"query": "What is the Maturity Benefit under the plan",
|
| 652 |
+
"expected": "On maturity, the policy holder will receive the sum assured plus accrued bonuses on full payment of premiums due throughout the premium paying term.",
|
| 653 |
+
"predicted": "Fund Value on the prevailing on the date of Maturity will be paid to the policyholder.",
|
| 654 |
+
"retrieval_success": false,
|
| 655 |
+
"correct": false,
|
| 656 |
+
"hallucinated": true
|
| 657 |
+
},
|
| 658 |
+
{
|
| 659 |
+
"query": "How do I know if I am eligible for the education loan for Indian education",
|
| 660 |
+
"expected": "If you are an Indian resident/citizen, have got admission in a graduate/ post graduate course in a college/institute/university which is recognized by the UGC/AICTE/AIBMS or ICMR, then you are eligible for the M&N Bank Student Loan for Indian Education.",
|
| 661 |
+
"predicted": "I don't have information on that.",
|
| 662 |
+
"retrieval_success": false,
|
| 663 |
+
"correct": false,
|
| 664 |
+
"hallucinated": true
|
| 665 |
+
},
|
| 666 |
+
{
|
| 667 |
+
"query": "Do I need to have M&N Bank account to purchase the Regalia ForexPlus Card",
|
| 668 |
+
"expected": "No, you don't need to have an account with M&N Bank to purchase Regalia ForexPlus Card. You can just walk into any of our M&N bank branches in India and purchase it over the counter.",
|
| 669 |
+
"predicted": "No, you don't need to have an account with M&N Bank to purchase the Regalia ForexPlus Card. You can just walk into any of our M&N bank branches in India and purchase it over the counter on submission of relevant KYC documents.",
|
| 670 |
+
"retrieval_success": false,
|
| 671 |
+
"correct": true,
|
| 672 |
+
"hallucinated": false
|
| 673 |
+
},
|
| 674 |
+
{
|
| 675 |
+
"query": "Who can trade in derivatives with an M&N Securities Trading Account",
|
| 676 |
+
"expected": "Trading in Derivatives will be available only to those customers who have submitted their financial documents or Income proof and signed the necessary agreements.",
|
| 677 |
+
"predicted": "Trading in Derivatives will be available only to those customers who have submitted their financial documents or income proof and signed the necessary agreements. For more information click here. For more information visit www.M&N sec.com",
|
| 678 |
+
"retrieval_success": false,
|
| 679 |
+
"correct": true,
|
| 680 |
+
"hallucinated": false
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"query": "Who do I contact to submit a claim under Health Suraksha policy in case of hospitalisation",
|
| 684 |
+
"expected": "For hospitalization /claim, customer can contact via Call: 1800 200 1999 / 1860 2000 700 Fax: 1860 2000 600 Email: [email protected] Through IPO: Login to Insurance Portfolio Organizer (IPO) from M&N Ergo website home page",
|
| 685 |
+
"predicted": "You should immediately intimate us on our helpline number regarding a claim under the Health Suraksha policy in case of hospitalization.",
|
| 686 |
+
"retrieval_success": false,
|
| 687 |
+
"correct": false,
|
| 688 |
+
"hallucinated": true
|
| 689 |
+
},
|
| 690 |
+
{
|
| 691 |
+
"query": "Will I be able to access both my accounts at all establishments/ATMs through a single Debit Card",
|
| 692 |
+
"expected": "Your existing Debit Card will be linked to both accounts. Any additional card will be charged at the regular rates. You will be able to select either account to transact at M&N Bank ATMs. At other VISA/PLUS ATMs (Other Banks ATMs) you may or may not have access to both accounts. When such an option is unavailable, you can only access your salary account. If you are a VISA Electron Debit Cardholder you can access only your Salary Account at merchant locations for transactions and not your Reimbursement Account. If you are a Maestro Debit Cardholder may be able to select between your Salary Account and Reimbursement Account at merchant locations.",
|
| 693 |
+
"predicted": "Both account holders can get an ATM / Debit Card, but a maximum of two cards are given for each Super Saver Account. This means you'll need to use separate ATMs or Debit Cards to access your individual accounts if you have more than one joint account holder.",
|
| 694 |
+
"retrieval_success": false,
|
| 695 |
+
"correct": false,
|
| 696 |
+
"hallucinated": true
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"query": "How do I make my premium payments",
|
| 700 |
+
"expected": "This is an annual policy, where the premium can be made via Credit Card or Cheque",
|
| 701 |
+
"predicted": "This is an annual policy, where the premium can be made online via Credit Card/Netbanking or Cheque.",
|
| 702 |
+
"retrieval_success": false,
|
| 703 |
+
"correct": true,
|
| 704 |
+
"hallucinated": false
|
| 705 |
+
},
|
| 706 |
+
{
|
| 707 |
+
"query": "Can I open a joint account with a non-senior citizen for 5 Year Tax Saving Fixed Deposit",
|
| 708 |
+
"expected": "Yes you can open deposit with non senior citizen.",
|
| 709 |
+
"predicted": "I don't have information on that.",
|
| 710 |
+
"retrieval_success": false,
|
| 711 |
+
"correct": false,
|
| 712 |
+
"hallucinated": true
|
| 713 |
+
},
|
| 714 |
+
{
|
| 715 |
+
"query": "how much is interest for FD",
|
| 716 |
+
"expected": "7%",
|
| 717 |
+
"predicted": "The interest rate for Fixed Deposit (FD) is 7%.",
|
| 718 |
+
"retrieval_success": false,
|
| 719 |
+
"correct": false,
|
| 720 |
+
"hallucinated": true
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"query": "What is the minimum balance required for an Ultima Current account",
|
| 724 |
+
"expected": "You need to maintain an Average Quarterly Balance (AQB) of Rs. 20,00,000 in your Ultima Current account.",
|
| 725 |
+
"predicted": "I don't have information on that",
|
| 726 |
+
"retrieval_success": false,
|
| 727 |
+
"correct": false,
|
| 728 |
+
"hallucinated": true
|
| 729 |
+
},
|
| 730 |
+
{
|
| 731 |
+
"query": "What do I do if I am not able to avail merchant offers",
|
| 732 |
+
"expected": "Do not worry if you are not able to avail the offers at your disposal. Any issue related merchant or code not working or bar code not getting read, just write to [email protected]",
|
| 733 |
+
"predicted": "Could you tell me more about what you're looking for? Are you referring to a specific account type or product that has merchant offers, and are you unable to take advantage of them?",
|
| 734 |
+
"retrieval_success": false,
|
| 735 |
+
"correct": false,
|
| 736 |
+
"hallucinated": true
|
| 737 |
+
},
|
| 738 |
+
{
|
| 739 |
+
"query": "Can I load multiple currencies on one Regalia ForexPlus Card",
|
| 740 |
+
"expected": "No. Your Regalia ForexPlus Card can only be loaded in USD currency. As a feature of the card, no cross currency conversion charges will be levied for using the card in any currency other than USD. Your transaction value will get converted in USD currency @ rate applied by MasterCard. No additional cost will be levied.",
|
| 741 |
+
"predicted": "I don't have information on that",
|
| 742 |
+
"retrieval_success": false,
|
| 743 |
+
"correct": false,
|
| 744 |
+
"hallucinated": true
|
| 745 |
+
},
|
| 746 |
+
{
|
| 747 |
+
"query": "Can I take a loan on these bonds",
|
| 748 |
+
"expected": "No, you cannot take a loan on these bonds.",
|
| 749 |
+
"predicted": "Policy loan is not offered in this plan.",
|
| 750 |
+
"retrieval_success": false,
|
| 751 |
+
"correct": false,
|
| 752 |
+
"hallucinated": true
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"query": "Do I need to provide collateral to avail of an education loan (Education Loans For Indian Education)",
|
| 756 |
+
"expected": "For loans up to Rs. 4 lakh - No collateral or Third Party Guarantee is required For loans from Rs. 4 lakh to Rs. 7.5 lakh No collateral required, however Third Party Guarantee is required For loans above Rs. 7.5 lakh collateral is required. You can choose from any of the following acceptable collaterals: Residential Property M&N Bank Fixed Deposit LIC/NSC/KVP View more",
|
| 757 |
+
"predicted": "For loans up to Rs. 4 lakh, No collateral or Third Party Guarantee is required.",
|
| 758 |
+
"retrieval_success": false,
|
| 759 |
+
"correct": false,
|
| 760 |
+
"hallucinated": true
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"query": "What does 3D stand for in M&N Life Click 2 Protect 3D Plus",
|
| 764 |
+
"expected": "3D stands for Death, Disease & Disability. M&N Life Click 2 Protect 3D Plus is a comprehensive term plan that provides protection against these 3D's.",
|
| 765 |
+
"predicted": "The context doesn't explicitly state what \"3D\" stands for, but it does mention that the plan options provide Waiver of Premium benefit if the Life Assured is diagnosed with any of the 34 covered Critical Illnesses.",
|
| 766 |
+
"retrieval_success": false,
|
| 767 |
+
"correct": false,
|
| 768 |
+
"hallucinated": true
|
| 769 |
+
},
|
| 770 |
+
{
|
| 771 |
+
"query": "How do I claim Personal Accident Death Cover for Gold Debit Card",
|
| 772 |
+
"expected": "Nominees and legal heirs should visit their nearest M&N Bank branch. We will help with the documents required, and, when these are complete, we will liaise with the relevant insurance company to resolve the claim. This is a special service for our EasyShop Gold Debit Card holders. Remember to provide us with all documents within one month of death.",
|
| 773 |
+
"predicted": "I don't have information on that.",
|
| 774 |
+
"retrieval_success": false,
|
| 775 |
+
"correct": false,
|
| 776 |
+
"hallucinated": true
|
| 777 |
+
},
|
| 778 |
+
{
|
| 779 |
+
"query": "Can I use the card to pay in any currency",
|
| 780 |
+
"expected": "Yes, the card is accepted for payment in any currency apart from those loaded on the card. No cross currency conversion charges will be applicable while processing such transactions. - Exchange rate used will be the MasterCard wholesale exchange rate prevailing at the time of the transaction. - Exchange rate used will be the Midrate prevailing at the time of the transaction.",
|
| 781 |
+
"predicted": "Yes, the card is accepted for payment in any currency apart from those loaded on the card. Please note that cross currency conversion charges will be applicable while processing such transactions.",
|
| 782 |
+
"retrieval_success": false,
|
| 783 |
+
"correct": true,
|
| 784 |
+
"hallucinated": false
|
| 785 |
+
},
|
| 786 |
+
{
|
| 787 |
+
"query": "Do I need to lodge an FIR in case of an accident",
|
| 788 |
+
"expected": "You will need to lodge an FIR in the following circumstances: Any third party personal injury or death due to an accident involving your vehicle Any personal injury or death of a paid driver Any personal injury or death of an owner-driver Any personal injury or death of a passenger Any third party property damage Theft of the entire vehicle Theft of accessories, stereo-recorders, other vehicle parts",
|
| 789 |
+
"predicted": "No, according to the context provided, a police FIR is not mentioned as being necessary for accidents. However, it's worth noting that the context only mentions specific types of claims (Burglary, Theft, Malicious Damage, Riot and Strike, Terrorism) where an FIR is mandatory. It does not explicitly state what happens in case of an accident claim under Home Insurance policy.",
|
| 790 |
+
"retrieval_success": false,
|
| 791 |
+
"correct": false,
|
| 792 |
+
"hallucinated": true
|
| 793 |
+
},
|
| 794 |
+
{
|
| 795 |
+
"query": "Do I need to have an M&N Bank account to purchase M&N Bank Multi Currency ForexPlus Platinum Card",
|
| 796 |
+
"expected": "No, you don't need to have an account with M&N Bank to purchase the M&N Bank Multi Currency ForexPlus Platinum Card. You can just walk into any of our M&N bank branches in India and purchase it over the counter.",
|
| 797 |
+
"predicted": "No, you don't need to have an account with M&N Bank to purchase the Multicurrency card. You can just walk into any of our M&N bank branches in India and purchase it over the counter.",
|
| 798 |
+
"retrieval_success": false,
|
| 799 |
+
"correct": true,
|
| 800 |
+
"hallucinated": false
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"query": "What are the documents required",
|
| 804 |
+
"expected": "Please refer Policy wordings for exhaustive list of claims documents required. We will not ask for anything over and above the list given in Policy.",
|
| 805 |
+
"predicted": "For Salaried Individuals, the documents required to avail of the Loan Against Property are:\n\n1. Proof of Residence - Any one of Ration Card / Telephone Bill / Electricity Bill / Voters Card.\n2. Proof of Identity - Any one of Voters Card / Drivers License / Employers Card.\n3. Latest Bank Statement / Passbook (where salary / income is credited for past 6 months).\n4. Latest 6 Months Salary Slip with all deductions and last 2 years Form 16.\n5. Copies of all Property Documents.\n\nFor Self-Employed Individuals, the documents required are:\n\n1. Certified Financial Statement for the last 2 years.\n2. Proof of Residence - Any one of Ration Card / Telephone Bill / Electricity Bill / Voters Card.\n3. Proof of Identity - Any one of Voters Card / Drivers License / Employers Card.\n4. Latest Bank Statement / Passbook (where salary / income is credited for past 6 months).\n5. Copies of all Property Documents.\n\nPlease note that these documents are required to open a Salary Account as well, but the specific requirements may vary depending on the type of account and individual circumstances.",
|
| 806 |
+
"retrieval_success": false,
|
| 807 |
+
"correct": false,
|
| 808 |
+
"hallucinated": true
|
| 809 |
+
}
|
| 810 |
+
]
|
| 811 |
+
}
|
test_eval_v7.json
ADDED
|
@@ -0,0 +1,431 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metrics": {
|
| 3 |
+
"split": "test",
|
| 4 |
+
"accuracy": 0.7,
|
| 5 |
+
"hallucination_rate": 0.05,
|
| 6 |
+
"retrieval_failure_rate": 0.35,
|
| 7 |
+
"samples": 20
|
| 8 |
+
},
|
| 9 |
+
"detailed_results": [
|
| 10 |
+
{
|
| 11 |
+
"query": "How do I become eligible for an M&N Bank Institutional Current Account",
|
| 12 |
+
"expected": "To become eligible for an M&N Bank Institutional Current Account you belong to one of the eligibility criteria mentioned above.",
|
| 13 |
+
"predicted": "I don't have information on that.",
|
| 14 |
+
"retrieval_success": true,
|
| 15 |
+
"correct": false,
|
| 16 |
+
"score": 0.0,
|
| 17 |
+
"reason": "Model returned a fallback response",
|
| 18 |
+
"is_fallback": true,
|
| 19 |
+
"hallucination_detail": {
|
| 20 |
+
"hallucinated": false,
|
| 21 |
+
"confidence": "high",
|
| 22 |
+
"reason": "Model does not know the answer"
|
| 23 |
+
},
|
| 24 |
+
"confidence_scores": [
|
| 25 |
+
0.7672,
|
| 26 |
+
0.7565,
|
| 27 |
+
0.7177
|
| 28 |
+
],
|
| 29 |
+
"avg_confidence": 0.7471
|
| 30 |
+
},
|
| 31 |
+
{
|
| 32 |
+
"query": "Can I issue cheques to load the Multicurrency Platinum ForexPlus Chip card",
|
| 33 |
+
"expected": "Customer can load Multicurrency card by issuance of cheque against the amount to be loaded. However, cards will be loaded post realisation of the cheque deposited by the customer. The exchange rate applicable will be for the day on which funds are realized and card is activated.",
|
| 34 |
+
"predicted": "Yes, you can issue cheques to load the Multicurrency Platinum ForexPlus Chip card.",
|
| 35 |
+
"retrieval_success": true,
|
| 36 |
+
"correct": true,
|
| 37 |
+
"score": 0.8,
|
| 38 |
+
"reason": "Most key information is present in the predicted answer, but it lacks specificity about when the card is loaded post cheque realization.",
|
| 39 |
+
"is_fallback": false,
|
| 40 |
+
"hallucination_detail": {
|
| 41 |
+
"hallucinated": false,
|
| 42 |
+
"confidence": "high",
|
| 43 |
+
"reason": "Response is correct"
|
| 44 |
+
},
|
| 45 |
+
"confidence_scores": [
|
| 46 |
+
0.7942,
|
| 47 |
+
0.7877,
|
| 48 |
+
0.77
|
| 49 |
+
],
|
| 50 |
+
"avg_confidence": 0.784
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"query": "What do you mean by exclusions under the Accidental Protection Plan - Hospital Cash",
|
| 54 |
+
"expected": "Exclusions are situations or conditions where M&N ERGO is not liable to pay the benefits to the insured person in the event of an accident.",
|
| 55 |
+
"predicted": "Exclusions under the Accidental Protection Plan - Hospital Cash policy are situations or conditions where M&N ERGO is not liable to pay the benefits to the insured person in the event of an accident.",
|
| 56 |
+
"retrieval_success": true,
|
| 57 |
+
"correct": true,
|
| 58 |
+
"score": 1.0,
|
| 59 |
+
"reason": "The predicted answer covers all key points in the expected answer with minor wording differences.",
|
| 60 |
+
"is_fallback": false,
|
| 61 |
+
"hallucination_detail": {
|
| 62 |
+
"hallucinated": false,
|
| 63 |
+
"confidence": "high",
|
| 64 |
+
"reason": "Response is correct"
|
| 65 |
+
},
|
| 66 |
+
"confidence_scores": [
|
| 67 |
+
0.7486,
|
| 68 |
+
0.7469,
|
| 69 |
+
0.7451
|
| 70 |
+
],
|
| 71 |
+
"avg_confidence": 0.7469
|
| 72 |
+
},
|
| 73 |
+
{
|
| 74 |
+
"query": "Can I get an overdraft facility on my fixed deposit funds",
|
| 75 |
+
"expected": "With our Super Saver Account, you can enjoy an overdraft facility of up to 90% of your Fixed Deposit funds without breaking the Fixed Deposit or losing interest on it. However, a minimum tenure of 6 months is required to open a Super Saver Fixed Deposit/ avail of the Super Saver facility on your existing deposit.",
|
| 76 |
+
"predicted": "Yes, with a Sweep-in Fixed Deposit linked to your Savings Account, you can avail of an Overdraft facility up to 75% of the principal amount of the Fixed Deposit. The rate applicable on this Overdraft facility will be 2% per annum over and above the Fixed Deposit Rate.",
|
| 77 |
+
"retrieval_success": true,
|
| 78 |
+
"correct": true,
|
| 79 |
+
"score": 0.8,
|
| 80 |
+
"reason": "The predicted answer covers most of the key points in the expected answer, but lacks specificity on the interest rate and minimum tenure requirements.",
|
| 81 |
+
"is_fallback": false,
|
| 82 |
+
"hallucination_detail": {
|
| 83 |
+
"hallucinated": false,
|
| 84 |
+
"confidence": "high",
|
| 85 |
+
"reason": "Response is correct"
|
| 86 |
+
},
|
| 87 |
+
"confidence_scores": [
|
| 88 |
+
0.7984,
|
| 89 |
+
0.7317,
|
| 90 |
+
0.7026
|
| 91 |
+
],
|
| 92 |
+
"avg_confidence": 0.7442
|
| 93 |
+
},
|
| 94 |
+
{
|
| 95 |
+
"query": "Do I need to undergo medical test for buying this policy",
|
| 96 |
+
"expected": "You are not required to undergo any medical tests up to the age of 55 years, except if you have declared any pre-existing diseases or ailments at the time of applying for the policy. In such cases and for applicants above age 55 years, one has to undergo the specified medical tests.",
|
| 97 |
+
"predicted": "No pre-policy medical check up is required for individuals up to the age of 45 years.",
|
| 98 |
+
"retrieval_success": false,
|
| 99 |
+
"correct": true,
|
| 100 |
+
"score": 0.8,
|
| 101 |
+
"reason": "The predicted answer is mostly accurate but misses the age limit of 55 years for medical tests.",
|
| 102 |
+
"is_fallback": false,
|
| 103 |
+
"hallucination_detail": {
|
| 104 |
+
"hallucinated": false,
|
| 105 |
+
"confidence": "high",
|
| 106 |
+
"reason": "Response is correct"
|
| 107 |
+
},
|
| 108 |
+
"confidence_scores": [
|
| 109 |
+
0.7628,
|
| 110 |
+
0.7548,
|
| 111 |
+
0.722
|
| 112 |
+
],
|
| 113 |
+
"avg_confidence": 0.7465
|
| 114 |
+
},
|
| 115 |
+
{
|
| 116 |
+
"query": "What is M&N ERGO General Insurance role in a third party injury/property damage suit",
|
| 117 |
+
"expected": "We will handle the legal suit from the moment you receive a notification till the case is resolved. We will either settle the case out of court or actively defend the matter at the Motor Accident Claims Tribunal. Your co-operation will be essential in gathering the necessary documents and preparing a defence viz. vehicle registration papers, driving licence of the person driving the vehicle, police FIR and panchnama, vakalatnama signed by you, your written statement as to the facts of the accident. We will also take care of legal liability and costs awarded by the tribunal. However, we will not be able to help you in the following situations: Where your insurance policy is not valid, either because it has expired or because the cheque for your premium has been dishonoured. The person driving the vehicle at the time of the accident was under the influence of drugs or alcohol. The person driving the vehicle at the time of the accident did not hold a valid driving licence to drive the said vehicle. View more",
|
| 118 |
+
"predicted": "According to my knowledge, as per the context provided, M&N ERGO General Insurance's role in a third-party injury or property damage suit would be to reimburse the insured person for the amount payable to them by the third party, or pay the garage directly if it's a cashless settlement.",
|
| 119 |
+
"retrieval_success": false,
|
| 120 |
+
"correct": true,
|
| 121 |
+
"score": 0.8,
|
| 122 |
+
"reason": "The predicted answer covers most of the key points in the expected answer, including M&N ERGO General Insurance's role and responsibilities, but misses some details such as the specific situations where they will not help.",
|
| 123 |
+
"is_fallback": false,
|
| 124 |
+
"hallucination_detail": {
|
| 125 |
+
"hallucinated": false,
|
| 126 |
+
"confidence": "high",
|
| 127 |
+
"reason": "Response is correct"
|
| 128 |
+
},
|
| 129 |
+
"confidence_scores": [
|
| 130 |
+
0.7407,
|
| 131 |
+
0.7005,
|
| 132 |
+
0.6929
|
| 133 |
+
],
|
| 134 |
+
"avg_confidence": 0.7114
|
| 135 |
+
},
|
| 136 |
+
{
|
| 137 |
+
"query": "What is the difference between 3D Life and 3D Life Long Protection options",
|
| 138 |
+
"expected": "In addition to the benefits under 3D Life Option, Life Assured is covered for whole life under 3D Life Long Protection option. Premiums under this option have to be paid only till an age of 65.",
|
| 139 |
+
"predicted": "The context does not explicitly state the differences between 3D Life and 3D Life Long Protection options, but it mentions that both are part of the plan options available under this plan. However, I can infer from the information provided earlier that the main difference is that Life Long Protection option provides coverage for whole life, whereas no specific details about 3D Life option are mentioned in the context.\n\nIf you could tell me more about what you're looking for regarding these two options (e.g., benefits, exclusions, premium requirements), I'd be happy to try and help further.",
|
| 140 |
+
"retrieval_success": true,
|
| 141 |
+
"correct": false,
|
| 142 |
+
"score": 0.0,
|
| 143 |
+
"reason": "Predicted does not match with expected",
|
| 144 |
+
"is_fallback": false,
|
| 145 |
+
"hallucination_detail": {
|
| 146 |
+
"hallucinated": true,
|
| 147 |
+
"confidence": "low",
|
| 148 |
+
"reason": "The response contains unsupported claims as it provides information not explicitly stated in the context."
|
| 149 |
+
},
|
| 150 |
+
"confidence_scores": [
|
| 151 |
+
0.7553,
|
| 152 |
+
0.7539,
|
| 153 |
+
0.7239
|
| 154 |
+
],
|
| 155 |
+
"avg_confidence": 0.7444
|
| 156 |
+
},
|
| 157 |
+
{
|
| 158 |
+
"query": "Which courses can I take an education loan for (Education Loans For Foreign Education)",
|
| 159 |
+
"expected": "You can take a Education Loan for foreign education on the following courses: Management Courses (Full-Time) Engineering Courses Medicine - Graduation + Post Graduation Masters in Computer Application ( MCA / MCM ) Architecture Hotel and Hospitality Agriculture Pure Science View more",
|
| 160 |
+
"predicted": "I don't have information on that.",
|
| 161 |
+
"retrieval_success": true,
|
| 162 |
+
"correct": false,
|
| 163 |
+
"score": 0.0,
|
| 164 |
+
"reason": "Model returned a fallback response",
|
| 165 |
+
"is_fallback": true,
|
| 166 |
+
"hallucination_detail": {
|
| 167 |
+
"hallucinated": false,
|
| 168 |
+
"confidence": "high",
|
| 169 |
+
"reason": "Model does not know the answer"
|
| 170 |
+
},
|
| 171 |
+
"confidence_scores": [
|
| 172 |
+
0.8209,
|
| 173 |
+
0.7939,
|
| 174 |
+
0.782
|
| 175 |
+
],
|
| 176 |
+
"avg_confidence": 0.7989
|
| 177 |
+
},
|
| 178 |
+
{
|
| 179 |
+
"query": "What are the currencies available for M&N Bank ForexPlus Platinum card",
|
| 180 |
+
"expected": "The M&N Bank ForexPlus Platinum card is currently available in 5 currencies, i.e. USD, Euro, GBP, HKD and THB.",
|
| 181 |
+
"predicted": "You can carry following currencies on your M&N Bank Multi Currency ForexPlus Platinum Card - Australian Dollar, United Arab Emirates Dirham, Canadian Dollar, Euro, Japanese Yen, Singapore Dollar, Sterling Pound, Swiss Franc, Swedish Krona and US Dollar.",
|
| 182 |
+
"retrieval_success": true,
|
| 183 |
+
"correct": true,
|
| 184 |
+
"score": 0.8,
|
| 185 |
+
"reason": "Most currencies mentioned in the predicted answer match the expected answer, but some currencies (Australian Dollar, United Arab Emirates Dirham, Canadian Dollar, Japanese Yen, Singapore Dollar, Sterling Pound, Swiss Franc, Swedish Krona) are not available for M&N Bank ForexPlus Platinum card.",
|
| 186 |
+
"is_fallback": false,
|
| 187 |
+
"hallucination_detail": {
|
| 188 |
+
"hallucinated": false,
|
| 189 |
+
"confidence": "high",
|
| 190 |
+
"reason": "Response is correct"
|
| 191 |
+
},
|
| 192 |
+
"confidence_scores": [
|
| 193 |
+
0.8525,
|
| 194 |
+
0.8109,
|
| 195 |
+
0.7936
|
| 196 |
+
],
|
| 197 |
+
"avg_confidence": 0.819
|
| 198 |
+
},
|
| 199 |
+
{
|
| 200 |
+
"query": "What is Extra Life Option in the policy",
|
| 201 |
+
"expected": "You can opt for Extra life Option under Classic Benefit under the plan. In case of death due to accident during the term of the policy, an additional Sum Assured will be payable to the Nominee in addition to the Death Benefit under the Plan. Please refer to product brochure for further details and/or consult Relationship Manager.",
|
| 202 |
+
"predicted": "In the policy, Extra Life Option provides an additional benefit of Extra Life Sum Assured upon death due to Accident. This means that if the policyholder dies due to an accident, they will receive not only the base sum assured but also an extra amount (up to the maximum allowed) as a separate benefit.",
|
| 203 |
+
"retrieval_success": true,
|
| 204 |
+
"correct": true,
|
| 205 |
+
"score": 0.8,
|
| 206 |
+
"reason": "Most key information is present in the predicted answer, but some minor details (e.g., 'Classic Benefit' and 'Refer to product brochure') are missing or not explicitly stated.",
|
| 207 |
+
"is_fallback": false,
|
| 208 |
+
"hallucination_detail": {
|
| 209 |
+
"hallucinated": false,
|
| 210 |
+
"confidence": "high",
|
| 211 |
+
"reason": "Response is correct"
|
| 212 |
+
},
|
| 213 |
+
"confidence_scores": [
|
| 214 |
+
0.7913,
|
| 215 |
+
0.7334,
|
| 216 |
+
0.7293
|
| 217 |
+
],
|
| 218 |
+
"avg_confidence": 0.7513
|
| 219 |
+
},
|
| 220 |
+
{
|
| 221 |
+
"query": "How do I obtain a NOC from the bank if I have lost my Registration Certificate book for a vehicle under finance with M&N Bank",
|
| 222 |
+
"expected": "You may obtain the NOC for a duplicate Registration Certificate book for your vehicle loan, by visiting any of our Retail Loan Service Center and submitting the following documents: Request form for applying for the required NOC. Self attested copy of the Registration Certificate book, duly self attested by you for validation. Copy of FIR or certificate from police or Acknowledgement from Police on written complaint with General Diary No. Applicable fee of Rs. 500//- vide a cheque/payorder/demand draft favouring M&N Bank Ltd Loan Account No. << >>. In case a bearer submits the request on your behalf, a bearer authorisation along with KYC documents(self attested copy and original for validation) of the bearer,i.e. Identity and Signature Proof like PAN Card, Aadhar Card, Driving License or Passport Copy will also need to be provided. View more",
|
| 223 |
+
"predicted": "You may obtain the NOC for a duplicate Registration Certificate book for your vehicle loan, by visiting any of our Retail Loan Service Center and submitting the following documents: Request form for applying for the required NOC. Self attested copy of the lost Registration Certificate book, duly self attested by you, along with the Original Registration Certificate book for validation. Applicable fee of Rs. 500/- vide a cheque/payorder/demand draft favouring M&N Bank Ltd Loan Account No. << >>. In case a bearer submits the request on your behalf, a bearer authorisation along with KYC documents(self attested copy and original for validation) of the bearer, i.e. Identity and Signature Proof like PAN Card, Aadhar Card, Driving License or Passport Copy will also need to be provided.",
|
| 224 |
+
"retrieval_success": true,
|
| 225 |
+
"correct": true,
|
| 226 |
+
"score": 0.9,
|
| 227 |
+
"reason": "Most key information is present in both answers, with minor differences in formatting and wording.",
|
| 228 |
+
"is_fallback": false,
|
| 229 |
+
"hallucination_detail": {
|
| 230 |
+
"hallucinated": false,
|
| 231 |
+
"confidence": "high",
|
| 232 |
+
"reason": "Response is correct"
|
| 233 |
+
},
|
| 234 |
+
"confidence_scores": [
|
| 235 |
+
0.8565,
|
| 236 |
+
0.8536,
|
| 237 |
+
0.7733
|
| 238 |
+
],
|
| 239 |
+
"avg_confidence": 0.8278
|
| 240 |
+
},
|
| 241 |
+
{
|
| 242 |
+
"query": "Can I avail an Overdraft against my Property",
|
| 243 |
+
"expected": "A Loan Against Property can be availed as a Term Loan with EMI repayments or as a Drop line Overdraft Facility.",
|
| 244 |
+
"predicted": "No, you cannot avail an Overdraft against your Property. The context only mentions Loan Against Securities and Loan Against Property as two separate account options. There is no information about an Overdraft being available against a property.",
|
| 245 |
+
"retrieval_success": true,
|
| 246 |
+
"correct": true,
|
| 247 |
+
"score": 0.8,
|
| 248 |
+
"reason": "The predicted answer covers most of the key points in the expected answer, including Loan Against Property as a term loan or drop line overdraft facility.",
|
| 249 |
+
"is_fallback": false,
|
| 250 |
+
"hallucination_detail": {
|
| 251 |
+
"hallucinated": false,
|
| 252 |
+
"confidence": "high",
|
| 253 |
+
"reason": "Response is correct"
|
| 254 |
+
},
|
| 255 |
+
"confidence_scores": [
|
| 256 |
+
0.7226,
|
| 257 |
+
0.7002,
|
| 258 |
+
0.6911
|
| 259 |
+
],
|
| 260 |
+
"avg_confidence": 0.7046
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"query": "Where do I get this card",
|
| 264 |
+
"expected": "ForexPlus card is available over the counter at M&N Bank branches. You simply need to walk into our branch with required documentation and walk out with ForexPlus card. The card will get activated within 4 hours from realization of funds. Alternatively, the customer can apply for card through NetBanking login also.In case the customer applies the card through NetBanking the card will be delivered to the customer within 2 working days. This facility is available at select locations only.",
|
| 265 |
+
"predicted": "You can obtain the ForexPlus Chip card over the counter at M&N Bank branches. Simply walk into a branch with required documentation and you'll be able to take the card away with you. The activation process typically takes 4 hours from the realization of funds.",
|
| 266 |
+
"retrieval_success": true,
|
| 267 |
+
"correct": true,
|
| 268 |
+
"score": 0.8,
|
| 269 |
+
"reason": "Most key information is present in the predicted answer, but some minor details and formatting differences are missing or altered.",
|
| 270 |
+
"is_fallback": false,
|
| 271 |
+
"hallucination_detail": {
|
| 272 |
+
"hallucinated": false,
|
| 273 |
+
"confidence": "high",
|
| 274 |
+
"reason": "Response is correct"
|
| 275 |
+
},
|
| 276 |
+
"confidence_scores": [
|
| 277 |
+
0.705,
|
| 278 |
+
0.7037,
|
| 279 |
+
0.7011
|
| 280 |
+
],
|
| 281 |
+
"avg_confidence": 0.7033
|
| 282 |
+
},
|
| 283 |
+
{
|
| 284 |
+
"query": "Will I get an online confirmation of my transactions",
|
| 285 |
+
"expected": "An order once placed will be confirmed immediately. The confirmation of units bought or sold will be done by the AMC / Registrar only on the next working day.",
|
| 286 |
+
"predicted": "Yes, when you use Verified by Visa/ MasterCard SecureCode, you will receive a pop-up window on your computer screen with a Personal Assurance Message (PAM) or Personal Greeting message from M&N Bank, confirming the transaction.",
|
| 287 |
+
"retrieval_success": false,
|
| 288 |
+
"correct": true,
|
| 289 |
+
"score": 0.8,
|
| 290 |
+
"reason": "Most key information is present in both answers, but the predicted answer lacks specific details about AMC/Registrar confirmation.",
|
| 291 |
+
"is_fallback": false,
|
| 292 |
+
"hallucination_detail": {
|
| 293 |
+
"hallucinated": false,
|
| 294 |
+
"confidence": "high",
|
| 295 |
+
"reason": "Response is correct"
|
| 296 |
+
},
|
| 297 |
+
"confidence_scores": [
|
| 298 |
+
0.7425,
|
| 299 |
+
0.7208,
|
| 300 |
+
0.6853
|
| 301 |
+
],
|
| 302 |
+
"avg_confidence": 0.7162
|
| 303 |
+
},
|
| 304 |
+
{
|
| 305 |
+
"query": "What are the documents required",
|
| 306 |
+
"expected": "Please refer Policy wordings for exhaustive list of claims documents required. We will not ask for anything over and above the list given in Policy.",
|
| 307 |
+
"predicted": "For opening a Current Account of a company, the following documents are required:\n\n1. Memorandum of Association (MOA)\n2. Articles of Association (AOA)\n3. Certificate of Incorporation\n4. Latest list of directors duly signed by any Director/Company Secretary /Authorised Signatory\n5. Board Resolution (BR) duly signed by the directors of the company.\n\nFor opening a Current Account of a partnership firm, the following documents are required:\n\n1. Latest Partnership Deed\n2. Documents establishing proof of existence\n3. Registration Certificate issued by Registrar of Firms\n4. Valid Business License or Certificate of Registration issued by State/Central Government authority\n5. PAN Card in the name of the firm\n6. Self-signed cheque issued from the firms account from a PSU/private sector/foreign bank along with a bank statement not older than four months\n7. Documents for establishing proof of address (such as landline telephone bill/electricity bill)\n8. Property Ownership Deed i.e. title deeds of the property in the name of the firm duly stamped and registered\n9. Latest property tax or water tax paid receipt/bill raised in the name of the firm\n10. TAN Allotment Letter in the name of the firm\n11. Existing bank account statement or passbook of a PSU/private sector/foreign bank\n\nFor opening a Current Account of a sole proprietorship firm, the following documents are required:\n\n1. Proof of existence in the name of firm\n2. Proof of address in the name of firm\n3. KYC of the proprietor\n4. Any two of the below listed documents for establishing proof of existence (such as registration certificate/license issued by Municipal authorities, etc.)",
|
| 308 |
+
"retrieval_success": false,
|
| 309 |
+
"correct": false,
|
| 310 |
+
"score": 0.0,
|
| 311 |
+
"reason": "Predicted does not match with expected",
|
| 312 |
+
"is_fallback": false,
|
| 313 |
+
"hallucination_detail": {
|
| 314 |
+
"hallucinated": false,
|
| 315 |
+
"confidence": "high",
|
| 316 |
+
"reason": "The response contains a detailed list of required documents for opening Current Accounts in different types of firms, which is not supported by the context."
|
| 317 |
+
},
|
| 318 |
+
"confidence_scores": [
|
| 319 |
+
0.7192,
|
| 320 |
+
0.7079,
|
| 321 |
+
0.7067
|
| 322 |
+
],
|
| 323 |
+
"avg_confidence": 0.7113
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"query": "How can I make a request to foreclose my Loans Against Rental Receivables account",
|
| 327 |
+
"expected": "Kindly submit a written request to your nearest Retail Loan Service Centre to close your account. Our customer service desk will provide you with the necessary assistance.",
|
| 328 |
+
"predicted": "I don't have information on that.",
|
| 329 |
+
"retrieval_success": false,
|
| 330 |
+
"correct": false,
|
| 331 |
+
"score": 0.0,
|
| 332 |
+
"reason": "Model returned a fallback response",
|
| 333 |
+
"is_fallback": true,
|
| 334 |
+
"hallucination_detail": {
|
| 335 |
+
"hallucinated": false,
|
| 336 |
+
"confidence": "high",
|
| 337 |
+
"reason": "Model does not know the answer"
|
| 338 |
+
},
|
| 339 |
+
"confidence_scores": [
|
| 340 |
+
0.7408,
|
| 341 |
+
0.7237,
|
| 342 |
+
0.6976
|
| 343 |
+
],
|
| 344 |
+
"avg_confidence": 0.7207
|
| 345 |
+
},
|
| 346 |
+
{
|
| 347 |
+
"query": "Will I be able to access both my accounts at all establishments/ATMs through a single Debit Card",
|
| 348 |
+
"expected": "Your existing Debit Card will be linked to both accounts. Any additional card will be charged at the regular rates. You will be able to select either account to transact at M&N Bank ATMs. At other VISA/PLUS ATMs (Other Banks ATMs) you may or may not have access to both accounts. When such an option is unavailable, you can only access your salary account. If you are a VISA Electron Debit Cardholder you can access only your Salary Account at merchant locations for transactions and not your Reimbursement Account. If you are a Maestro Debit Cardholder may be able to select between your Salary Account and Reimbursement Account at merchant locations.",
|
| 349 |
+
"predicted": "Yes, as a joint Super Saver Account holder, you can get an ATM / Debit Card that allows access to both accounts at most establishments/ATMs.",
|
| 350 |
+
"retrieval_success": true,
|
| 351 |
+
"correct": true,
|
| 352 |
+
"score": 0.8,
|
| 353 |
+
"reason": "The predicted answer covers most of the key points in the expected answer, but lacks specificity about VISA/PLUS ATMs and merchant locations.",
|
| 354 |
+
"is_fallback": false,
|
| 355 |
+
"hallucination_detail": {
|
| 356 |
+
"hallucinated": false,
|
| 357 |
+
"confidence": "high",
|
| 358 |
+
"reason": "Response is correct"
|
| 359 |
+
},
|
| 360 |
+
"confidence_scores": [
|
| 361 |
+
0.6918,
|
| 362 |
+
0.6886,
|
| 363 |
+
0.6799
|
| 364 |
+
],
|
| 365 |
+
"avg_confidence": 0.6868
|
| 366 |
+
},
|
| 367 |
+
{
|
| 368 |
+
"query": "How do I know my application has been accepted",
|
| 369 |
+
"expected": "You can check your account opening status on www.M&N sec.com on the footer page of the homepage section page under the Application status.",
|
| 370 |
+
"predicted": "You will be informed once your application is accepted and all the required accounts are set up. In case your application is not processed because of lack of some details, our representative will contact you by mail.",
|
| 371 |
+
"retrieval_success": false,
|
| 372 |
+
"correct": true,
|
| 373 |
+
"score": 0.8,
|
| 374 |
+
"reason": "The predicted answer covers most of the key points in the expected answer but lacks specific details about checking account status online.",
|
| 375 |
+
"is_fallback": false,
|
| 376 |
+
"hallucination_detail": {
|
| 377 |
+
"hallucinated": false,
|
| 378 |
+
"confidence": "high",
|
| 379 |
+
"reason": "Response is correct"
|
| 380 |
+
},
|
| 381 |
+
"confidence_scores": [
|
| 382 |
+
0.7143,
|
| 383 |
+
0.68,
|
| 384 |
+
0.6228
|
| 385 |
+
],
|
| 386 |
+
"avg_confidence": 0.6724
|
| 387 |
+
},
|
| 388 |
+
{
|
| 389 |
+
"query": "How do Recurring Deposits work",
|
| 390 |
+
"expected": "A monthly deposit of a pre-fixed amount is made in the Recurring Deposit account. On maturity, you get back the amount you deposited, along with interest calculated at the rate applicable at the time of opening your account.",
|
| 391 |
+
"predicted": "Recurring Deposits can now be booked through NetBanking. Following are the steps for booking your Recurring Deposit online: Access your NetBanking account with your Customer ID and IPIN (NetBanking Password) Select Open Recurring Deposit option under the Recurring Deposit menu from the Menu bar located on the left hand side of the web page Select the desired values from the Drop-down lists Once complete, click on Continue and Confirm the details entered",
|
| 392 |
+
"retrieval_success": true,
|
| 393 |
+
"correct": true,
|
| 394 |
+
"score": 0.8,
|
| 395 |
+
"reason": "The predicted answer covers most of the key points in the expected answer, but lacks specific details about interest calculation and maturity amount.",
|
| 396 |
+
"is_fallback": false,
|
| 397 |
+
"hallucination_detail": {
|
| 398 |
+
"hallucinated": false,
|
| 399 |
+
"confidence": "high",
|
| 400 |
+
"reason": "Response is correct"
|
| 401 |
+
},
|
| 402 |
+
"confidence_scores": [
|
| 403 |
+
0.7399,
|
| 404 |
+
0.7276,
|
| 405 |
+
0.7272
|
| 406 |
+
],
|
| 407 |
+
"avg_confidence": 0.7316
|
| 408 |
+
},
|
| 409 |
+
{
|
| 410 |
+
"query": "How much am I charged for this service",
|
| 411 |
+
"expected": "A quarterly maintenance charge is applicable to hold an Investment Services Account. We request you to contact your RM / Personal Banker or nearest M&N Bank Branch for details.",
|
| 412 |
+
"predicted": "I don't have information on that.",
|
| 413 |
+
"retrieval_success": false,
|
| 414 |
+
"correct": false,
|
| 415 |
+
"score": 0.0,
|
| 416 |
+
"reason": "Model returned a fallback response",
|
| 417 |
+
"is_fallback": true,
|
| 418 |
+
"hallucination_detail": {
|
| 419 |
+
"hallucinated": false,
|
| 420 |
+
"confidence": "high",
|
| 421 |
+
"reason": "Model does not know the answer"
|
| 422 |
+
},
|
| 423 |
+
"confidence_scores": [
|
| 424 |
+
0.6953,
|
| 425 |
+
0.6919,
|
| 426 |
+
0.6699
|
| 427 |
+
],
|
| 428 |
+
"avg_confidence": 0.6857
|
| 429 |
+
}
|
| 430 |
+
]
|
| 431 |
+
}
|