Class Multi30kDataset

Inheritance Relationships

Base Type

Class Documentation

class Multi30kDataset : public mindspore::dataset::Dataset

A source dataset that reads and parses Multi30k dataset.

Public Functions

Multi30kDataset(const std::vector<char> &dataset_dir, const std::vector<char> &usage, const std::vector<std::vector<char>> &language_pair, int64_t num_samples, ShuffleMode shuffle, int32_t num_shards, int32_t shard_id, const std::shared_ptr<DatasetCache> &cache)

Constructor of Multi30kDataset.

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

  • usage[in] Part of dataset of MULTI30K, can be “train”, “test”, “valid” or “all”.

  • language_pair[in] List containing text and translation language.

  • num_samples[in] The number of samples to be included in the dataset.

  • shuffle[in] The mode for shuffling data every epoch. Can be any of: ShuffleMode::kFalse - No shuffling is performed. ShuffleMode::kFiles - Shuffle files only. ShuffleMode::kGlobal - Shuffle both the files and samples.

  • num_shards[in] Number of shards that the dataset should be divided into.

  • shard_id[in] The shard ID within num_shards. This argument should be specified only when num_shards is also specified.

  • cache[in] Tensor cache to use.

~Multi30kDataset() override = default

Destructor of Multi30kDataset.