|
--- |
|
configs: |
|
- config_name: default |
|
data_files: |
|
- split: train |
|
path: data/train-* |
|
dataset_info: |
|
features: |
|
- name: movieId |
|
dtype: int64 |
|
- name: title |
|
dtype: string |
|
- name: genres |
|
dtype: string |
|
splits: |
|
- name: train |
|
num_bytes: 563045 |
|
num_examples: 9742 |
|
download_size: 300293 |
|
dataset_size: 563045 |
|
language: |
|
- en |
|
pretty_name: MovieLens Movies |
|
size_categories: |
|
- 1K<n<10K |
|
license: other |
|
task_categories: |
|
- text-classification |
|
tags: |
|
- movies |
|
--- |
|
# MovieLens Movies (Teeny-Tiny Castle) |
|
|
|
This dataset is part of a tutorial tied to the [Teeny-Tiny Castle](https://github.com/Nkluge-correa/TeenyTinyCastle), an open-source repository containing educational tools for AI Ethics and Safety research. |
|
|
|
## How to Use |
|
|
|
```python |
|
from datasets import load_dataset |
|
|
|
dataset = load_dataset("AiresPucrs/movielens-movies", split = 'train') |
|
``` |
|
|