按时间归档:2022年06月
-
Mindspore在train时RuntimeError报错
问题描述: 训练环境: Windows10 64bit; MindSpore1.5.2; CPU; python3.7.5; 训练 CIFAR-10 Image Classific…
-
PyQt5安装失败的可能原因
1. 问题描述 一开始单独在conda上创建了环境,选的是py3.7版本,使用pip install PyQt5报出一连串的错误Maybe you forgot to setup …
-
ros 启动报编码错误:Invalid <param> tag: ‘ascii‘ codec can‘t decode byte 0xe6 in position 17: ordinal not in
Invalid <param> tag: ‘ascii’ codec can’t decode byte 0xe6 in posit…
-
Tensorflow踩坑笔记,记录各种报错和解决方法
不知道是不是错觉,tensorflow比pytorch容易报错,记录一下踩的坑。 随时更新。 1 Loaded runtime CuDNN library: 7.4.1 but s…
-
瑞芯微RV1109平台交叉编译踩坑
背景 最近的一个工作任务是将之前在联咏平台上做的一个人脸识别的项目移植过去。之前这个项目主要是做的,移植的事情自然落到我身上了。组里也没人搞过瑞芯微的,开始踩坑淌水。 交叉编译工具…
-
timm使用之deepspeed多进程编译问题
最近使用timm跑transformer的时候遇到了一个bug,特此记录一下。 遇到的bug如下: 代码会卡在箭头所示的位置,卡很长时间也不会继续运行。 键盘打断之后发现卡在了to…
-
解决python numpy RuntimeWarning: overflow encountered in exp的较好方法
在自定义神经网络中,使用sigmoid函数时,报数据溢出overflow错误。 def sigmoid(self, x): return 1.0 / (1 + np.exp(-x)…
-
【NLP】Seq2Seq论文(RNN) 机器翻译
论文:《Learning Phrase Representations using RNN Encoder–Decoder for Statistical Machine Tran…
-
关于tf.GPUOptions的一些参数
tf.GPUOptions(allocator_type , allow_growth , deferred_deletion_bytes, force_gpu_compatibl…
-
pandas常用的数学统计方法
方法 说明 count 计算非NA值的数量 describe 针对Series或各DataFrame列计算总统计值 min/max 计算最大值、最小值 argmin、argmax …