What exactly to do in this question?

download dataset not working please help me with what needs to be done in this question?

Hi,
There is no training data in this challenge.
You can see the API link for chuk norris jokes?
You just need to call this api for different ids of jokes given in the ID.csv file. The make a prediction.csv with same format as sample.csv

Thanks :slight_smile:

i had to submit .csv file in this?
please can u elaborate what to to in this when i open the api link it shows json data i need to convert all that data into .csv file ?
i read in other discussion that u told that i need to take only 500 cells how do u come to know aout this as it is nowhere mentioned in problem statement ?

Hi,
When you download the test set, you will get a file ID.csv.
You need to get jokes for only those ids mentioned in ID.csv. So, read that file first using pandas, and iterate over every id one by one and at the same time send get request to http://api.icndb.com/jokes/id id will get change every time, you will receive a json format, you just need to extract the joke from there. This way you will get a lots of jokes, append them in a list as well…

At the end you have to create a file like this.