nickmuchi commited on
Commit
d6826a8
1 Parent(s): 223456c

Update functions.py

Browse files
Files changed (1) hide show
  1. 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(f'b:{b}')
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