-
来来回回折腾了好多次,aur直接安装或者手动编译,安装后都无法补全 ycm的log文件是在/tmp目录下的。 发现问题是缺少libtinfo.so.5 2017-07-28 17:02:12,667 - ERROR - Error occurred while loading global extra conf /home/coder/.ycm_extra_conf.py Traceback (most recent call last): File …
Read More -
原文链接 感谢stanford,感谢原作者的翻译,我调整了一下代码格式,可以当做手册来用了,毕竟之前没怎么写过py 23333 **译者注**:本文[智能单元](https://zhuanlan.zhihu.com/intelligentunit)首发,翻译自斯坦福CS231n课程笔记[Python Numpy Tutorial](http://link.zhihu.com/?target=http//cs231n.github.io/python-numpy-tutorial/),由课程教师[Andrej …
Read More -
参考资料:install qq/tim on linux with wine wine运行qq不能输入账号 This tutorial introduces how to install QQ/TIM in Linux with Wine, which had been tested on ArchLinux with Wine 2.4. Prerequisites Before start, you need to get the latest Wine. I'm not sure whether QQ/TIM can run on lower version of Wine. In ArchLinux, you can …
Read More -
。。。哭了哦。。终于解决了这个bug 参考资料: libgfortran broken? libgfortran=3.0 should not be install with numpy <= 1.9 [SOLVED] libgfortran.so.3:cannot open shared object file: No such file [Replacing gcc-libs-libs with gcc-multilib arch conflict with gcc-libs and gcc-libs-multilib on latest update 一开始以为是anaconda相关。。。搞了半天。。。 然后又按照第一 …
Read More -
20180214 update: 第一个版本已经比较久了,于是更新一下,顺便写了个脚本orz 1 2 pacman-mirrors -c China 3 echo " [archlinuxcn] " >> /etc/pacman.conf 4 echo " SigLevel = Optional TrustedOnly " >> /etc/pacman.conf 5 echo " Server = https://mirrors.ustc.edu.cn/archlinuxcn/\$arch" >> /etc/pacman.conf 6 7 8 …
Read More -
conda update anaconda 后提示 ValueError: unsupported format character ')' (0x29) at index 49 查到了这个:anaconda update issue I have narrowed this down to the following packages: package build psutil-1.2.1 py27_0 hard-link pycparser-2.10 py27_0 hard-link pykit-0.1.0 np18py27_2 hard-link pyparsing-2.0.1 …
Read More -
...先随便记录一下好了。。。 * 神经网络识别数字或者字母? * 识别车牌号? * not hot dog? 安装python pandas pandas 发现之前装caffe的时候...装了这个东西。。。 但是就是检测不到?于是卸载重装。。。。 需要注意的是,如果是python2,要用pip2 install pandas,如果是python3,要用pip3 install pandas. 安装tensorflow...直接sudo pacman -Syu python-tensorflow 即可。。。 然后装好之后检测不到orz...感觉还是pip的安装方式比较靠谱。。。 pip2 install tensorflow …
Read More -
由于最近要做数字图像处理的大作业,以及之后一段时间,估计写python多一些,所以打算花些时间配置下vim. 1. 一键执行 其实之前一直有的。。不过没有效果,就没有管。发现问题是,python对应的filetype为"python",而不是"py" func! CompileRunGcc() exec "w" if &filetype == 'c' exec "!g++ % -o %<" exec "! ./%<" elseif &filetype == 'cpp' exec "!g++ % …
Read More -
好久没装新插件了,最新要配下python,发现安装时候满屏的错误。。。 最后发现是shell的锅,因为我用的是fish,在.vimrc文件中添加 set shell=/bin/bash 即可。 以及说下可能的其他原因,虽然我没遇到 * 对于arch系,可能从aur中安装的版本out ot data * 可能没有把.vimrc中vundle的配置从set rtp+=~/.vim/bundle/vundle更新成set rtp+=~/.vim/bundle/vundle.vim * 可能项目名称用了" 而不是' 以及顺手查了下bundle和Plugin的区别。。。 简单来说。。Plugin是新写法,bundle是正在被淘 …
Read More -
复习一下数字图像处理。 按照我自己的理解简单来说: 原链码:按照任意起点走边界一周,方向按照上图对应的表示,得到的数字序列就是原链码。 归一化链码:为了解决原链码中起点不唯一而产生的序列不唯一的问题,规定,对于所有起点得到的原链码中,字典序最小的即为归一化链码(由于序列都是自然数,因此字典序最小也可以理解成,把该序列看成有前导0的自然数之后的数值之后的数值最小。 差分码:为了解决图形旋转之后,原链码和归一化链码都会发生变化,引入差分码。n位原链码(或归一化链码,由于归一化链码只是一种特殊的原链码,之后不再单独强调)可以得到n-1位差分码。具体来说,对于原链码ai,可以得到差分码b[i],_b[i] = ((a[i+1] - …
Read More