/ml1m-images

URLs to each movie from the MovieLens-1M data set

Primary LanguagePython

ml1m images

This repository provides researchers with URLs to each movie from the MovieLens-1M data set
A small number of images did not have an image on imdb, they have been replaced with automatically generated images with the title as text.

This can be easily used together with the existing information provided by merging the two CSVs on the item_id column:

import pandas as pd  
ml1m_images = pd.read_csv("ml1m_images.csv")
other_df_with_the_ids.merge(ml1m_images, on="item_id", how="left")

The script provides a way to automatically download all images, named accordingly <item_id>.jpg.