[Introduction](https://www.mindspore.cn/tutorials/en/r2.0.0-alpha/beginner/introduction.html) || [Quick Start](https://www.mindspore.cn/tutorials/en/r2.0.0-alpha/beginner/quick_start.html) || [Tensor](https://www.mindspore.cn/tutorials/en/r2.0.0-alpha/beginner/tensor.html) || **Dataset** || [Transforms](https://www.mindspore.cn/tutorials/en/r2.0.0-alpha/beginner/transforms.html) || [Model](https://www.mindspore.cn/tutorials/en/r2.0.0-alpha/beginner/model.html) || [Autograd](https://www.mindspore.cn/tutorials/en/r2.0.0-alpha/beginner/autograd.html) || [Train](https://www.mindspore.cn/tutorials/en/r2.0.0-alpha/beginner/train.html) || [Save and Load](https://www.mindspore.cn/tutorials/en/r2.0.0-alpha/beginner/save_load.html)
# Dataset
Data is the foundation of deep learning, and high-quality data input is beneficial to the entire deep neural network. MindSpore provides Pipeline-based [Data Engine](https://www.mindspore.cn/docs/zh-CN/r2.0.0-alpha/design/data_engine.html) and achieves efficient data preprocessing through [Dataset](https://www.mindspore.cn/tutorials/en/r2.0.0-alpha/beginner/dataset.html) and [Transforms](https://www.mindspore.cn/tutorials/en/r2.0.0-alpha/beginner/transforms.html), where Dataset is the start of Pipeline and is used to load raw data. `mindspore.dataset` provides built-in dataset interfaces for loading text, image, audio, etc., and provides interfaces for loading customized datasets.
In addition, MindSpore's domain development library also provides a large number of preloaded datasets that can be downloaded and used with one click through the API. This tutorial will elaborate on different dataset loading methods, common dataset operations and customized dataset methods respectively.
```python
import numpy as np
from mindspore.dataset import vision
from mindspore.dataset import MnistDataset, GeneratorDataset
import matplotlib.pyplot as plt
```
## Loading a Dataset
We use the **Mnist** dataset as a sample to introduce the loading method by using `mindspore.dataset` .
The interface provided by `mindspore.dataset` **only supports decompressed data files**, so we use the `download` library to download the dataset and decompress it.
```python
# Download data from open datasets
from download import download
url = "https://mindspore-website.obs.cn-north-4.myhuaweicloud.com/" \
"notebook/datasets/MNIST_Data.zip"
path = download(url, "./", kind="zip", replace=True)
```
```text
Downloading data from https://mindspore-website.obs.cn-north-4.myhuaweicloud.com/notebook/datasets/MNIST_Data.zip (10.3 MB)
file_sizes: 100%|██████████████████████████| 10.8M/10.8M [00:02<00:00, 3.96MB/s]
Extracting zip file...
Successfully downloaded / unzipped to ./
```
After the compressed file is deleted and loaded directly, you can see that its data type is MnistDataset.
```python
train_dataset = MnistDataset("MNIST_Data/train", shuffle=False)
print(type(train_dataset))
```
```text
```
## Iterating a Dataset
After the dataset is loaded, the data is generally acquired in an iterative manner and then fed into the neural network for training. You can use the `create_tuple_iterator` or `create_dict_iterator` interface to create a data iterator to iteratively access data. The default type of data to be accessed is `Tensor`. If `output_numpy=True` is set, the type of data to be accessed is `Numpy`.
```python
def visualize(dataset):
figure = plt.figure(figsize=(4, 4))
cols, rows = 3, 3
for idx, (image, label) in enumerate(dataset.create_tuple_iterator()):
figure.add_subplot(rows, cols, idx + 1)
plt.title(int(label))
plt.axis("off")
plt.imshow(image.asnumpy().squeeze(), cmap="gray")
if idx == cols * rows - 1:
break
plt.show()
```
```text
visualize(train_dataset)
```
## Common Operations on Datasets
The common operations of dataset use the asynchronous execution of `dataset = dataset.operation()` according to The design concept of Pipeline. The execution of the operation returns a new Dataset, at which time no specific operation is executed, but nodes are added to the Pipeline. The whole Pipeline is executed in parallel when iteration is finally performed.
The following are the common operations of datasets.
### shuffle
Random `shuffle` of datasets can eliminate the problem of uneven distribution caused by data alignment.

The datasets provided by `mindspore.dataset` can be configured with `shuffle=True` at loading time, or using the following operation:
```python
train_dataset = train_dataset.shuffle(buffer_size=64)
visualize(train_dataset)
```
### map
The `map` is the key operation of data preprocessing, which can add data transforms to a specified column of the dataset, apply data transforms to each element of the column data, and return a new dataset containing the transformed elements. Here data scaling is performed on the Mnist dataset by dividing the image uniformly by 255 and converting the data type from uint8 to float32.
> For the different types of transforms supported by dataset, see [Data Transforms](https://www.mindspore.cn/tutorials/en/r2.0.0-alpha/beginner/transforms.html).
```python
image, label = next(train_dataset.create_tuple_iterator())
print(image.shape, image.dtype)
```
```text
(28, 28, 1) Uint8
```
```python
train_dataset = train_dataset.map(vision.Rescale(1.0 / 255.0, 0), input_columns='image')
```
Comparing the data before and after map, you can see the data type change.
```python
image, label = next(train_dataset.create_tuple_iterator())
print(image.shape, image.dtype)
```
```text
(28, 28, 1) Float32
```
### batch
Packing the dataset into a fixed size `batch` is a compromise method for model optimization using gradient descent with limited hardware resources, which can ensure the randomness of gradient descent and optimize the computational effort.

Generally we set a fixed batch size to divide the continuous data into several batches (batches).
```python
train_dataset = train_dataset.batch(batch_size=32)
```
The batched data is increased by one dimension, and the size is `batch_size`.
```python
image, label = next(train_dataset.create_tuple_iterator())
print(image.shape, image.dtype)
```
```text
(32, 28, 28, 1) Float32
```
## Customizing Dataset
`mindspore.dataset` provides the loading interface for some common datasets and standard format datasets. For those datasets that MindSpore does not support directly, you can generate datasets by constructing customized dataset classes or customized dataset generator functions, and then implement customized dataset loading through the `GeneratorDataset` interface.
`GeneratorDataset` supports constructing customized datasets from iterable objects, iterators and generator functions, which are explained in detail below.
### Iterable Objects
Iterable object means that Python can use a for loop to traverse over all elements and we can construct an iterable object by implementing the `__getitem__` method and loading it into the `GeneratorDataset`.
```python
# Iterable object as input source
class Iterable:
def __init__(self):
self._data = np.random.sample((5, 2))
self._label = np.random.sample((5, 1))
def __getitem__(self, index):
return self._data[index], self._label[index]
def __len__(self):
return len(self._data)
```
```python
data = Iterable()
dataset = GeneratorDataset(source=data, column_names=["data", "label"])
```
```python
# list, dict, tuple are also iterable object.
dataset = GeneratorDataset(source=[(np.array(0),), (np.array(1),), (np.array(2),)], column_names=["col"])
```
### Iterator
Objects in Python that have `__iter__` and `__next__` methods built in are called iterators (Iterators). The following constructs a simple iterator and loads it into `GeneratorDataset`.
```python
# Iterator as input source
class Iterator:
def __init__(self):
self._index = 0
self._data = np.random.sample((5, 2))
self._label = np.random.sample((5, 1))
def __next__(self):
if self._index >= len(self._data):
raise StopIteration
else:
item = (self._data[self._index], self._label[self._index])
self._index += 1
return item
def __iter__(self):
self._index = 0
return self
def __len__(self):
return len(self._data)
```
```python
data = Iterator()
dataset = GeneratorDataset(source=data, column_names=["data", "label"])
```