forked from mindspore-Ecosystem/mindspore
update dataset link
This commit is contained in:
parent
0d82d753c8
commit
4304a77812
|
@ -17,7 +17,7 @@ mindspore.dataset.transforms
|
|||
from mindspore.dataset.transforms import c_transforms
|
||||
from mindspore.dataset.transforms import py_transforms
|
||||
|
||||
更多详情请参考 `通用数据处理与增强 <https://www.mindspore.cn/tutorials/zh-CN/r1.10/advanced/dataset/augment_common_data.html>`_ 。
|
||||
更多详情请参考 `通用数据变换 <https://www.mindspore.cn/tutorials/zh-CN/r1.10/beginner/transforms.html#common-transforms>`_ 。
|
||||
|
||||
常用数据处理术语说明如下:
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
This file contains basic classes that help users do flexible dataset loading.
|
||||
You can define your own dataset loading class, and use GeneratorDataset to help load data.
|
||||
You can refer to the
|
||||
`tutorial <https://www.mindspore.cn/tutorials/zh-CN/r1.10/advanced/dataset/custom.html>`_
|
||||
`tutorial <https://www.mindspore.cn/tutorials/en/r1.10/beginner/dataset.html#customizing-dataset>`_
|
||||
to help define your dataset loading.
|
||||
After declaring the dataset object, you can further apply dataset operations
|
||||
(e.g. filter, skip, concat, map, batch) on it.
|
||||
|
|
|
@ -80,7 +80,7 @@ class GraphData:
|
|||
|
||||
About how to load raw graph dataset into MindSpore please
|
||||
refer to `Loading Graph Dataset <https://www.mindspore.cn/tutorials/zh-CN/
|
||||
master/advanced/dataset/augment_graph_data.html>`_.
|
||||
r1.10/advanced/dataset/augment_graph_data.html>`_.
|
||||
|
||||
Args:
|
||||
dataset_file (str): One of file names in the dataset.
|
||||
|
|
|
@ -31,7 +31,7 @@ Note: Legacy c_transforms and py_transforms are deprecated but can still be impo
|
|||
from mindspore.dataset.transforms import py_transforms
|
||||
|
||||
See `Common Data Processing and Augmentation
|
||||
<https://www.mindspore.cn/tutorials/en/r1.10/advanced/dataset/augment_common_data.html>`_ tutorial for more details.
|
||||
<https://www.mindspore.cn/tutorials/en/r1.10/beginner/transforms.html#common-transforms>`_ tutorial for more details.
|
||||
|
||||
Descriptions of common data processing terms are as follows:
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ class Cifar100ToMR:
|
|||
|
||||
Note:
|
||||
For details about Examples, please refer to `Converting the CIFAR-10 Dataset <https://
|
||||
www.mindspore.cn/tutorials/zh-CN/r1.10/advanced/dataset/record.html#converting-the-cifar-10-dataset>`_.
|
||||
www.mindspore.cn/tutorials/en/r1.10/advanced/dataset/record.html#converting-the-cifar-10-dataset>`_.
|
||||
|
||||
Args:
|
||||
source (str): The cifar100 directory to be transformed.
|
||||
|
|
|
@ -40,7 +40,7 @@ class Cifar10ToMR:
|
|||
|
||||
Note:
|
||||
For details about Examples, please refer to `Converting the CIFAR-10 Dataset <https://
|
||||
www.mindspore.cn/tutorials/zh-CN/r1.10/advanced/dataset/record.html#converting-the-cifar-10-dataset>`_.
|
||||
www.mindspore.cn/tutorials/en/r1.10/advanced/dataset/record.html#converting-the-cifar-10-dataset>`_.
|
||||
|
||||
Args:
|
||||
source (str): The cifar10 directory to be transformed.
|
||||
|
|
|
@ -36,7 +36,7 @@ class CsvToMR:
|
|||
|
||||
Note:
|
||||
For details about Examples, please refer to `Converting CSV Dataset <https://
|
||||
www.mindspore.cn/tutorials/zh-CN/r1.10/advanced/dataset/record.html#converting-csv-dataset>`_.
|
||||
www.mindspore.cn/tutorials/en/r1.10/advanced/dataset/record.html#converting-csv-dataset>`_.
|
||||
|
||||
Args:
|
||||
source (str): The file path of csv.
|
||||
|
|
|
@ -69,7 +69,7 @@ class TFRecordToMR:
|
|||
|
||||
Note:
|
||||
For details about Examples, please refer to `Converting TFRecord Dataset <https://
|
||||
www.mindspore.cn/tutorials/zh-CN/r1.10/advanced/dataset/record.html#converting-tfrecord-dataset>`_.
|
||||
www.mindspore.cn/tutorials/en/r1.10/advanced/dataset/record.html#converting-tfrecord-dataset>`_.
|
||||
|
||||
Args:
|
||||
source (str): TFRecord file to be transformed.
|
||||
|
|
Loading…
Reference in New Issue