If you would like to access to the annotations, please git clone the repo:
https://github.com/eBay/modanet
If you are looking for images, please check the paperdoll repo: https://github.com/kyamagu/paperdoll/tree/master/data/chictopia
Using the command below would help you to get the image_url_list
db = sqlite3.connect('file:./paperdoll/data/chictopia/chictopia.sqlite3?mode=ro', uri=True)
photos = pd.read_sql("""
SELECT
*,
'[http://images2.chictopia.com](http://images2.chictopia.com/)' || path AS url
FROM photos
WHERE photos.post_id IS NOT NULL AND file_file_size IS NOT NULL
""", con=db)
where N from images{N}.[chictopia.com](http://chictopia.com/) can be one of {0, 1, 2, 3}.
For baseline performance, please check our initial technical paper:
Feel free to raise any questions here.