2021-12-02 20:06:28 +08:00
|
|
|
|
mindspore.dataset.SubsetSampler
|
2021-11-27 16:09:05 +08:00
|
|
|
|
====================================
|
|
|
|
|
|
|
|
|
|
|
|
.. py:class:: mindspore.dataset.SubsetSampler(indices, num_samples=None)
|
2021-11-23 15:00:48 +08:00
|
|
|
|
|
|
|
|
|
|
对索引序列中的元素进行采样。
|
|
|
|
|
|
|
2021-11-27 16:09:05 +08:00
|
|
|
|
**参数:**
|
|
|
|
|
|
|
2021-11-29 11:48:18 +08:00
|
|
|
|
- **indices** (Any iterable Python object but string): 索引的序列。
|
|
|
|
|
|
- **num_samples** (int, optional): 要采样的元素数量(默认值为None,采样所有元素)。
|
2021-11-27 16:09:05 +08:00
|
|
|
|
|
|
|
|
|
|
**样例:**
|
|
|
|
|
|
|
|
|
|
|
|
>>> indices = [0, 1, 2, 3, 4, 5]
|
|
|
|
|
|
>>>
|
|
|
|
|
|
>>> # 创建SubsetSampler,从提供的索引采样
|
|
|
|
|
|
>>> sampler = ds.SubsetSampler(indices)
|
|
|
|
|
|
>>> dataset = ds.ImageFolderDataset(image_folder_dataset_dir,
|
|
|
|
|
|
... num_parallel_workers=8,
|
|
|
|
|
|
... sampler=sampler)
|
|
|
|
|
|
|
|
|
|
|
|
**异常:**
|
|
|
|
|
|
|
|
|
|
|
|
- **TypeError:** 索引元素的类型不是数字。
|
|
|
|
|
|
- **TypeError:** `num_samples` 不是整数值。
|
|
|
|
|
|
- **ValueError:** `num_samples` 为负值。
|
2021-11-23 15:00:48 +08:00
|
|
|
|
|
|
|
|
|
|
.. include:: mindspore.dataset.BuiltinSampler.rst
|