Open ymodak opened 3 years ago
Is anyone able to provide clarification on this? In particular, what, if any, are the differences between these two datasets?
@jpgard I see that movie_lens
dataset handle is deprecated and it is recommended to use movielens
instead.
This information is also now raised as Warning when trying to load tensorflow datasets with movie_lens
handle.
import tensorflow_datasets as tfds
ds, ds_info = tfds.load('movie_lens', split='train', with_info=True)
==> WARNING:absl:The handle "movie_lens" for the MovieLens dataset is deprecated. Prefer using "movielens" instead.
Thanks! Got it. So are the underlying datasets identical, and movie_lens
is just a deprecated handle for the movielens
data?
Description of issue
Possible duplicates for movie_lens dataset. As per the TF website I see two versions of movie lens dataset namely;
Is there any difference between these two movie lens datasets? If yes then we may want add the distinction or perhaps remove one version of it. Any help is appreciated. Thanks! @Conchylicultor Can you please take a look? Thanks!