mindspore.dataset.config.get_seed
- mindspore.dataset.config.get_seed()
Get random number seed. If the seed has been set, then will return the set value, otherwise it will return the default seed value which equals to std::mt19937::default_seed .
- Returns
int, random number seed.
Examples
>>> # Get the global configuration of seed. >>> # If set_seed() is never called before, the default value(std::mt19937::default_seed) will be returned. >>> import mindspore.dataset as ds >>> seed = ds.config.get_seed()