成功解决ImportError: [joblib] Attempting to do parallel computing without protecting your import on a sy

简介: 成功解决ImportError: [joblib] Attempting to do parallel computing without protecting your import on a sy

解决问题


ImportError: [joblib] Attempting to do parallel computing without protecting your import on a system that does not support forking. To use parallel-computing in a script, you must protect your main loop using "if __name__ == '__main__'". Please see the joblib documentation on Parallel for more information







解决思路


导入错误:[joblib]试图在不支持分叉的系统上执行并行计算而不保护导入。要在脚本中使用并行计算,您必须使用"if __name__ == '__main__'"来保护主循环。有关详细信息,请参阅并行的joblib文档。


tips:

1、凡是有调用方法的时候,均会出现该错误!

from sklearn.grid_search import GridSearchCV

因为sklearn.grid_search方法已经有所重构!







解决方法


在主程序最顶部加入主代码即可!


if __name__=='__main__':   #主程序最顶端,加入此行代码即可

哈哈,大功告成!


 


相关文章
|
并行计算 PyTorch 算法框架/工具
Importing the numpy C-extensions failed.
Importing the numpy C-extensions failed.
1398 0
Importing the numpy C-extensions failed.
|
虚拟化
成功解决Failed to execute stage ‘Setup validation’: Hardware does not support virtualization.
成功解决Failed to execute stage ‘Setup validation’: Hardware does not support virtualization.
成功解决Failed to execute stage ‘Setup validation’: Cannot locate gluster packages
成功解决Failed to execute stage ‘Setup validation’: Cannot locate gluster packages
|
并行计算
Hint: This means that multiple copies of the OpenMP runtime have been linked into the program.
Hint: This means that multiple copies of the OpenMP runtime have been linked into the program.
297 0
|
分布式计算 Spark
《Acceleration of Generic SPARK Workloads via a “Sea of Cores” Scalable Compute Fabric》电子版地址
Acceleration of Generic SPARK Workloads via a “Sea of Cores” Scalable Compute Fabric
81 0
《Acceleration of Generic SPARK Workloads via a “Sea of Cores” Scalable Compute Fabric》电子版地址
|
Python
from scipy import special, optimize, from ._nnls import nnls ImportError: DLL load failed: 找不到指定的模块。
from scipy import special, optimize, from ._nnls import nnls ImportError: DLL load failed: 找不到指定的模块。
616 0
from scipy import special, optimize, from ._nnls import nnls ImportError: DLL load failed: 找不到指定的模块。
|
Shell
Solving environment: failed with initial frozen solve. Retrying with flexible solve的解决方法
Solving environment: failed with initial frozen solve. Retrying with flexible solve的解决方法
13184 0
Solving environment: failed with initial frozen solve. Retrying with flexible solve的解决方法
|
存储 缓存 Oracle
TPCH 深入剖析 - part1 Hidden Messages and Lessons Learned from an Influential Benchmark
TPC-H可以说是世界上最为流行的OLAP workload的benchmark程序,无论你看什么样的论文或技术文章,只要是和query processing相关的,大多会在evaluation时使用TPC-H作为评估工具。而如果你从事query optimization/query execution的工作,则怎么都会和TPC-H打上交道,即使是TP型的数据库系统。
409 0
TPCH 深入剖析 - part1 Hidden Messages and Lessons Learned from an Influential Benchmark
成功解决gensim\utils.py:1209: UserWarning: detected Windows; aliasing chunkize to chunkize_serial warn
成功解决gensim\utils.py:1209: UserWarning: detected Windows; aliasing chunkize to chunkize_serial warn
成功解决import matplotlib; matplotlib.use('Agg') # pylint: disable=multiple-statements
成功解决import matplotlib; matplotlib.use('Agg') # pylint: disable=multiple-statements

热门文章

最新文章