Function mindspore::dataset::config::set_seed
- Defined in File config.h 
Function Documentation
- 
bool mindspore::dataset::config::set_seed(int32_t seed)
- A function to set the seed to be used in any random generator. This is used to produce deterministic results. - 参数
- seed – [in] The default seed to be used. 
- 返回
- The seed is set successfully or not. 样例
- // Set a new global configuration value for the seed value. // Operations with randomness will use the seed value to generate random values. bool rc = config::set_seed(5);