About QuickDrawBattle
Google collected over 50 million drawings with the game Quick, Draw!. They released the dataset for everyone to use, but most of the drawings are either incomplete or just bad. Let's sort out the best ones together and create a dataset of good drawings!
Currently, 8972 different drawings have been voted on 17663 times. 74 drawings have 20 votes.
How does it work?
You are given 2 random drawings of a random category and you choose which is better. The drawings are then sorted and we can see the best ones!
Since there are so many drawings, it would take a long time for even one drawing to be voted on twice and we would probably never get usable results. For that reason, there are a maximum of 25 drawings up for battle per category. They will be replaced once they have been voted on 20 times. Some categories have more than 25 drawings right now, because there used to be no limit.
The score is calculated using using a lower bound of Wilson score confidence interval for a Bernoulli parameter. During score calculation, every drawing gets one invisible win, so the score of drawings with no wins is not 0 and they can be compared. The scores are also normalized to a range from 0 to 1. Table of all possible scores.
Results
You can see the results on the ranking page. To get usable data, you can GET them from /api/get_ranking. You probably want to get the key_ids from here and find the strokes from the full dataset. You can also get the strokes from here if you enable the strokes parameter, but they are in lists of coordinate pairs instead of 2 lists of x and y.
Parameters:
- category - which category the drawings will be from
- order - use "ascending" to get ascending order
- strokes - use "true" to get strokes in lists of strokes which are lists of coordinate pairs
- limit - how many drawings to return, default 25, max 1000
- offset - how many drawings to skip
- votemin - the minimum amount of votes for a drawing
Example requests:
- Get all sea turtles with at least 5 votes: /api/get_ranking?category=sea turtle&votemin=5
- Get 100 drawings with strokes: /api/get_ranking?limit=100&strokes=true
- Skip the first 100 drawings and get 100 drawings: /api/get_ranking?offset=100&limit=100