Class Caltech256Dataset

Inheritance Relationships

Base Type

Class Documentation

class Caltech256Dataset : public mindspore::dataset::Dataset

A source dataset for reading and parsing Caltech256 dataset.

Public Functions

Caltech256Dataset(const std::vector<char> &dataset_dir, bool decode, const std::shared_ptr<Sampler> &sampler, const std::shared_ptr<DatasetCache> &cache)

Constructor of Caltech256Dataset.

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

  • decode[in] Decode the images after reading.

  • sampler[in] Shared pointer to a sampler object used to choose samples from the dataset.

  • cache[in] Tensor cache to use.

Caltech256Dataset(const std::vector<char> &dataset_dir, bool decode, const Sampler *sampler, const std::shared_ptr<DatasetCache> &cache)

Constructor of Caltech256Dataset.

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

  • decode[in] Decode the images after reading.

  • sampler[in] Raw pointer to a sampler object used to choose samples from the dataset.

  • cache[in] Tensor cache to use.

Caltech256Dataset(const std::vector<char> &dataset_dir, bool decode, const std::reference_wrapper<Sampler> &sampler, const std::shared_ptr<DatasetCache> &cache)

Constructor of Caltech256Dataset.

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

  • decode[in] Decode the images after reading.

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

  • cache[in] Tensor cache to use.

~Caltech256Dataset() override = default

Destructor of Caltech256Dataset.