工程开发
Yang TY
这个作者很懒,什么都没留下…
展开
-
pyinstaller打包xgboost项目,得到的可执行文件运行出错
经排查发现,报错原因是,pyinstaller的包解析机制不完善,误将xgboost的sklearn.py模块当作sklearn包(即scikit-learn工具包)给封装了起来,由于get_params是继承自scikit-learn库的一个成员函数,所以才会找不到。对xgboost的sklearn.py文件重命名,例如改为sklearn_xgb.py,消除sklearn包的命名冲突即可。原创 2022-11-16 19:44:24 · 778 阅读 · 1 评论 -
pyinstaller打包xgboost项目发生错误
用pyinstaller打包一个调用了xgboost的项目,打包时没有报错,但是运行打包生成的可执行文件时,报出了如下错误,但xxx/libxgboost.so这个文件确实存在。原创 2022-11-15 20:11:53 · 1179 阅读 · 0 评论 -
fpn.pytorch报错:undefined symbol: __cudaPopCallConfiguration
I find the root of the problem is the mismatch of the nvcc version and the torchcuda version. You must make sure they are the same.Check nvcc version:nvcc --versionCheck torch cuda version, go to the python interface and typeimport torchtorch.version.cud原创 2021-02-01 11:31:10 · 569 阅读 · 0 评论 -
安装caffe框架时报错——对‘cv::_InputArray::_InputArray(cv::Mat const&)’未定义的引用
关于在ubuntu上安装caffe框架的教程,网上已有很多,因此本文旨在:(1)整理现有资料;(2)分享若干自己遇到的特殊问题和解决方案。1. 现有资料:(1)安装opencv(2)安装caffe框架2. 自己遇到的特殊问题及解决方案:问题描述:我按照上述教程安装caffe时,遇到一个问题:在caffe目录下执行make all时,链接过程报错——对‘cv::_InputArray::_InputArray(cv::Mat const&)’未定义的引用。关于上述问题,网上原创 2021-01-27 17:12:49 · 1048 阅读 · 0 评论