Function mindspore::dataset::CelebA

Function Documentation

inline std::shared_ptr<CelebADataset> mindspore::dataset::CelebA(const std::string &dataset_dir, const std::string &usage, const std::reference_wrapper<Sampler> &sampler, bool decode = false, const std::set<std::string> &extensions = {}, const std::shared_ptr<DatasetCache> &cache = nullptr)

Function to create a CelebADataset.

Note

The generated dataset has two columns [‘image’, ‘attr’]. The type of the image tensor is uint8. The attr tensor is uint32 and one hot type.

Parameters
  • dataset_dir[in] Path to the root directory that contains the dataset.

  • usage[in] One of “all”, “train”, “valid” or “test”.

  • sampler[in] Sampler object used to choose samples from the dataset.

  • decode[in] Decode the images after reading (default=false).

  • extensions[in] Set of file extensions to be included in the dataset (default={}).

  • cache[in] Tensor cache to use (default=nullptr which means no cache is used).

Returns

Shared pointer to the CelebADataset.