摘要: 参考网站: http://jingyan.baidu.com/article/db55b609a3f6274ba30a2fb8.html (ubuntu环境变量设置) http://blog.chinaunix.net/uid-24250828-id-3233893.html (ubuntu安装配置详解) http://jingyan.baidu.com/article/fa4125acb7... 阅读全文
posted @ 2017-02-23 16:04 yizhichun 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 参考网站: http://bbs.pinggu.org/thread-1518929-1-1.html 深度学习中train test validation三种数据之间的区别 training是训练数据,拿来拟合模型,就是用这部分数据来建立模型,这个相信大家都明白。validation是验证数据,刚才说training建了一个模型,但是模型的效果仅体现了训练数据,但不一定适合同类的其他数... 阅读全文
posted @ 2017-02-23 16:01 yizhichun 阅读(1285) 评论(0) 推荐(0) 编辑
摘要: 参考网站: http://selfcontroller.iteye.com/blog/2012385 Ubuntu基本概念之脚本首行的意义 #!/usr/bin/env在linux的一些bash的脚本,需在开头一行指定脚本的解释程序 #!/usr/bin/env python #!/usr/bin/env perl#!/usr/bin/env zimbu#!/usr/bi... 阅读全文
posted @ 2017-02-23 15:58 yizhichun 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 参考网站: https://zhidao.baidu.com/question/206141818.html Ubuntu 基本概念之美元号的意义 第一个意思:假如你刚完成登录还没输入任何字符之前,你所看到的游标所在位置的同一行的左边部份,我们称之为提示符号(prompt)。$:给一般使用者帐号使用提示符号。 第二个意思:$ 作变量或运算替换。例如:A=hello,B=$A,那么B... 阅读全文
posted @ 2017-02-23 15:55 yizhichun 阅读(381) 评论(0) 推荐(0) 编辑
摘要: 参考网站: http://www.cnblogs.com/passingcloudss/archive/2011/05/03/2035273.html 大小端存储的意义 不同的CPU有不同的字节序类型,这些字节序是指整数在内存中保存的顺序。 最常见的有两种: 1. Little-endian:将低序字节存储在起始地址(低位编址) 2. Big-endian:将高序字节存储在... 阅读全文
posted @ 2017-02-23 15:52 yizhichun 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 参考网站: http://baike.baidu.com/link?url=P50krf9VaHKc7LZVaiRBMQw9aVJ1EgXVWkgkLm1aEsgxv8zlHPQkfMBrtvXBrPvFmkYDQjnLup0eBKHZt4N9yciCJ4alDf54xfyTdug3h1u magic number 魔数的定义 定义一:编程中的常数变量名 譬如一个很简单的根据... 阅读全文
posted @ 2017-02-23 15:50 yizhichun 阅读(610) 评论(0) 推荐(0) 编辑
摘要: 参考网站:https://www.zhihu.com/question/27872849 常见的矩阵库包括:Eigen3, Eigen2, Intel MKL, ACML, GOTO BLAS, ATLAS等 阅读全文
posted @ 2017-02-23 15:41 yizhichun 阅读(1079) 评论(0) 推荐(0) 编辑
摘要: 参考网站: http://www.cnblogs.com/darkknightzh/p/5909121.html (linux下) http://www.mamicode.com/info-detail-1338521.html (windows下) http://www.cnblogs.com/denny402/p/5082341.html (最简单明了的例子) http://www.2cto.... 阅读全文
posted @ 2017-02-23 15:12 yizhichun 阅读(1257) 评论(0) 推荐(0) 编辑
摘要: Python文件夹下图像数据可视化 import matplotlib.pyplot as plt import matplotlib.image as mpimg import numpy as np import urllib2 import urllib import os import shutil subdir= "/7" homedir = os.g... 阅读全文
posted @ 2017-02-23 14:56 yizhichun 阅读(262) 评论(0) 推荐(0) 编辑
摘要: Python显示图像 import matplotlib.pyplot as plt # plt 用于显示图片 import matplotlib.image as mpimg # mpimg 用于读取图片 import numpy as np lena = mpimg.imread('lena.png') # 读取和代码处于同一目录下的 lena.png # 此时 l... 阅读全文
posted @ 2017-02-23 14:55 yizhichun 阅读(1170) 评论(0) 推荐(0) 编辑
摘要: Python多版本共存 启动 py -2 py -3 使用pip py -2 –m pip install XXXX py -3 –m pip install XXXX 阅读全文
posted @ 2017-02-23 14:22 yizhichun 阅读(136) 评论(0) 推荐(0) 编辑
摘要: Windows下安装glumy过程 pip install numpy pip install pyopengl pip install freetype-py pip install glumpy 测试: python import glumpy 报错 报错1:vc编译器 Windows下pip安装包报错:Microsoft Visual C++ 9.0 is required... 阅读全文
posted @ 2017-02-23 13:56 yizhichun 阅读(951) 评论(0) 推荐(0) 编辑