菜尼奥排错之AttributeError: module ‘mmcv‘ has no attribute ‘dump‘ 本人是在mmcv.dump(train_infos, './data/nuScenes/nuscenes_infos_train.pkl')出现的类似问题。老菜鸟直觉==>版本问题概率比较大。直接GitHub官网找问题。
菜尼奥排错之TensorRT libmyelin.so.1: cannot open shared object file: No such file or directory 环境版本:Ubuntu 18.04.2 LTSNvidia GeForce RTX2080superCUDA Version 10.0cuDNN Version 7.6cmake 3.17.5TensorRT 7.0.011报错信息:诸如此类:error while loading shared libraries: libmyelin.so.1: cannot open shared object file: No such file or directory本.
备忘小记--Ubuntu(Linux)/windows安装libtiff详解 问题描述:报错:ModuleNotFoundError: No module named 'libtiff'例如:Anaconda中利用命令【conda list】发现libtiff存在,但在【pip list】中不存在。import libtifffrom libtiff import TIFFfrom libtiff import xxxx......#由于python脚本以上代码导致如下问题ModuleNotFoundError: No module named 'libtiff
菜尼奥排错之merge6 = merge([drop4,up6], mode = ‘concat‘...)TypeError: ‘module‘ object is not callable 环境版本:Ubuntu 18.04.2 LTSNvidia GeForce RTX2080super CUDA Version 10.0tensorflow-gpu 1.13.1keras 2.2.4-tfprojecthttps://github.com/decouples/Unetunet.py脚本文件报错信息:诸如此类:merge6 = merge([drop4,up6], mode = 'concat'...)TypeError: 'module' obje...
菜尼奥排错之keras TypeError: _init_subclassed_network() got an unexpected keyword argument ‘input‘ 环境版本:Ubuntu 18.04.2 LTSNvidia GeForce RTX2080super CUDA Version 10.0tensorflow-gpu 1.13.1keras 2.2.4-tf报错信息:诸如此类:TypeError: _init_subclassed_network() got an unexpected keyword argument 'input'TypeError: forward() got an unexpected keyword
What is the Softmax Function?详解机器学习中的Softmax函数【小白菜可懂】 softmax函数是把K个实值转换为另外K个实值并使K个实值之和为1的函数。输入数值可以是正数/负数/0或者几种的组合,经过softmax函数转换为[0,1]之间的数值,以便于用来描述概率分布。如果一个输入数值很小或负数,softmax函数则将它转换为小的概率值;如果一个输入数值很大,softmax函数则将它转换为大的概率值,每一个转换后的数值都将保持在[0,1]的范围之内。
备忘小记006--详解virtualenv中使用python的虚拟环境 目录虚拟环境1.1 问题1.2 方案virtualenv2.1 安装2.2 常用命令使用virtualenv小结虚拟环境1.1 问题在同一台电脑上需要用到同一个包的不同版本(tensorflow-gpu==1.5/tensorflow-gpu==1.12和tensorflow==2.5.0),如果直接使用sudo pip install tensorflow-gpu==1.5sudo pip install tensorflow-gpu==1.12sud
白话图解机器学习里的Regularization正则化 概念概念:Regularization,直译为规范化; 正则; 规则化调整; 正则化; 规则化。是一种约束性调整策略。个人理解:向模型加入某些规则(约束条件,含先验知识),缩小解空间,减小求出错误解的可能性,也就是增强模型泛化能力的一种手段。【正则化】这一称呼貌似是小gui子的翻译。出处:线性代数理论 目的:求解不适定问题。机器学习中主要为了防止过拟合,如在下图中舍红线取绿线。方法本质:机器学习领域中,LogisticRegression逻辑回归也罢,SV...
备忘小记004--shell脚本外部传参一二事 操作对象:写个shell脚本:命名为test.sh具体内容如下:#!/bin/bashecho "Hello, ${1}!"a=${2}b=${3}echo $((a+b))exit 0命令直接传参:苹果????:栗子????:xxx@xxx:~$ ./test.sh XiaoMing 10 20Hello, XiaoMing!30xxx@xxx:~$ ./test.sh XiaoMingHello, XiaoMing!0xxx@xxx:~$ ./test.s
备忘小记003--python调用shell脚本方法集萃 提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档文章目录前言 一、pandas是什么? 二、使用步骤 1.引入库 2.读入数据 总结0.写个test的shell脚本脚本文件名称test.sh内容如下,复制即可。#!/bin/bashecho "Hello, world!"echo "Hello, shell!"a=10b=20expr $a + $bexpr $a - $bexpr $a \* $bexpr $a / $b
菜尼奥排错之keras ‘tensorflow.compat.v2.__internal__‘ has no attribute ‘register_clear_session_function‘ 环境版本: Ubuntu 16.04.2 LTS Nvidia GeForce RTX 3080*2 CUDA Version 11.2 tensorflow 2.5.0 keras 2.7.0报错信息:训练时报错如下:AttributeError: module 'tensorflow.compat.v2.__internal__' has no attribute 'register_clear_session_fu...
经典CNN结构之GoogLeNet(inception_v1/inception_v2/inception_v3/inception_v4) 卷积更强 序言网络结构图解详解创新思想核心点感悟点论文复现参考论文代码实现