Does lucadiliello / newsqa have any unaswerable question?

#2
by MaggiePai - opened

Hi,
I want to know
are all questions in lucadiliello/newsqa have answers?
"have answer" means that the the value of answer-column has at least one word

thanks

I do not remember. Just do something like

d = load_dataset("lucadiliello/newsqa")
d = d.filter(lambda a: any(a['answer']))
print(d)

Sign up or log in to comment