Update functions.py
Browse files- functions.py +2 -2
functions.py
CHANGED
|
@@ -514,8 +514,8 @@ def generate_eval(raw_text, N, chunk):
|
|
| 514 |
|
| 515 |
for i, b in enumerate(sub_sequences):
|
| 516 |
try:
|
| 517 |
-
print(
|
| 518 |
-
qa = chain.run(b)
|
| 519 |
eval_set.append(qa)
|
| 520 |
ques_update.info(f"Creating Question: {i+1}")
|
| 521 |
|
|
|
|
| 514 |
|
| 515 |
for i, b in enumerate(sub_sequences):
|
| 516 |
try:
|
| 517 |
+
print(type(b))
|
| 518 |
+
qa = chain.run(str(b))
|
| 519 |
eval_set.append(qa)
|
| 520 |
ques_update.info(f"Creating Question: {i+1}")
|
| 521 |
|