From ba52fc15c211d45be21dd42d20e2c7e88b9fc7f8 Mon Sep 17 00:00:00 2001 From: huanxiaoling <3174348550@qq.com> Date: Mon, 7 Nov 2022 10:35:53 +0800 Subject: [PATCH] update en dataset file --- tutorials/source_en/beginner/dataset.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/source_en/beginner/dataset.md b/tutorials/source_en/beginner/dataset.md index 7a74d7dca2..c00f8d5231 100644 --- a/tutorials/source_en/beginner/dataset.md +++ b/tutorials/source_en/beginner/dataset.md @@ -19,7 +19,7 @@ import matplotlib.pyplot as plt We use the **Mnist** dataset as a sample to introduce the loading method by using `mindspore.dataset` . -`mindspore.dataset` provides a large number of dataset loading interfaces. Here we still take Mnist as an example and load it directly by using the downloaded dataset file. The interface provided by `mindspore.dataset` **only supports decompressed datafiles**, so let's remove the compressed file first. +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 -- Gitee