D:\ProgramData\Anaconda3\envs\cie\lib\site-packages\sklearn\cluster\_kmeans.py:870: FutureWarning: The default value of `n_init` will change from 10 to 'auto' in 1.4. Set the value of `n_init` explicitly to suppress the warning warnings.warn( D:\ProgramData\Anaconda3\envs\cie\lib\site-packages\sklearn\cluster\_kmeans.py:1382: UserWarning: KMeans is known to have a memory leak on Windows with MKL, when there are less chunks than available threads. You can avoid it by setting the environment variable OMP_NUM_THREADS=2.
时间: 2023-09-06 14:13:28 浏览: 235
解决pycharm导入numpy包的和使用时报错:RuntimeError: The current Numpy installation (‘D:\\python3.6\\lib\\site-packa的问题
这是一个来自 scikit-learn 库的警告信息,它可能与 KMeans 聚类算法在 Windows 平台上的内存泄漏问题有关。警告信息建议设置 OMP_NUM_THREADS 环境变量为 2 可以避免该问题。该警告信息还提到了 `n_init` 参数的默认值将在 1.4 版本中从 10 更改为 'auto'。建议在使用 KMeans 算法时注意这些警告信息。
阅读全文