AlibabaResearch / DAMO-ConvAI

DAMO-ConvAI: The official repository which contains the codebase for Alibaba DAMO Conversational AI.
MIT License
1.18k stars 186 forks source link

Wrong answer in training dataset #151

Open jpiabrantes opened 3 months ago

jpiabrantes commented 3 months ago

Just looked at the first question in train.json and it is wrong.

Question: Name movie titles released in year 1945. Sort the listing by the descending order of movie popularity.

The answer in train.json is

SELECT movie_title FROM movies WHERE movie_release_year = 1945 ORDER BY movie_popularity DESC LIMIT 1

This is wrong as it will show only the movie title of the MOST popular movie released in 1945. The right answer should not have LIMIT 1.