摘要:
对内存资源存放位置的限定 1. auto 默认值 分配的内存都是可读可写的区域 auto int a; 区域如果出现 {} 我们认为在栈空间 2. register register int a; 限制变量定义在寄存器上的修饰符 定义快速访问的变量,放在寄存器内计算速度更快! 编译器会尽量的安排CP 阅读全文
posted @ 2019-06-26 22:40
lililili——
阅读(254)
评论(0)
推荐(0)
摘要:
1. if else if(条件表达式){ ****;} else {xxxxxx;} 2. switch case default 3. do while for 4. continue break goto 阅读全文
posted @ 2019-06-26 22:23
lililili——
阅读(210)
评论(0)
推荐(0)
摘要:
1. struct 结构体 基本语法 struct myabc{ unsigned int a; unsigned int b; unsigned int c; unsigned int d; } 调用: int i; struct myabc mybuf; //mybuf 就是myabc类型 结构 阅读全文
posted @ 2019-06-26 22:11
lililili——
阅读(484)
评论(0)
推荐(0)
摘要:
1.生成模型是由数据学习联合概率p(x,y),然后求出条件概率分布p(y|x)做为预测的模型 即:p(y|x) = p(x,y)/p(x) 我们需要求p(x,y) 模型:朴素贝叶斯(NB)、隐马尔科夫(HMM)、马尔科夫随机场(MRF)、 Gaussians、 Mixtures of Multino 阅读全文
posted @ 2019-06-26 15:57
lililili——
阅读(404)
评论(0)
推荐(0)
摘要:
本机环境: anaconda3,pyhon3.7.4 配置第2个python环境,安装python3.6 > conda create --name tensorflow python=3.6使用以上命令,默认的情况下只安装了一些必须的包,并不会像我们安装anaconda时自动安装很多常用的包,要实 阅读全文
posted @ 2019-06-26 15:42
lililili——
阅读(1348)
评论(0)
推荐(0)
摘要:
方式1 在终端(windows:电脑win+R, linux:ctrl+alt+T)输入: pip list 或者 conda list 方式2: 从终端进入python 输入: help("modules") 阅读全文
posted @ 2019-06-26 15:38
lililili——
阅读(1924)
评论(0)
推荐(0)
摘要:
任务: 将服务器端数据挂载在板子上 1. 首先ssh问题 spawn ssh $remote_user@$remote_host (1) ssh:connect to host 10.110.6.50 port 22:Connection timed out 解决:需要查看板子和本机的子网段是否一致 阅读全文
posted @ 2019-06-26 15:18
lililili——
阅读(874)
评论(0)
推荐(0)
摘要:
参考:https://blog.csdn.net/zhangxinrun/article/details/6409125 亲测有用! 阅读全文
posted @ 2019-06-26 14:57
lililili——
阅读(575)
评论(0)
推荐(0)
摘要:
diff 可以用来比较文件和文件夹是否相同 比较文件 比较文件夹 -r 递归比较所有找到的子目录 -N 把缺少的文件当作空白文件处理 -a 把所有文件当作本文件逐行比较 -q 近输出文件是否有差异,不报告错误 重点是看这里的返回值 阅读全文
posted @ 2019-06-26 14:54
lililili——
阅读(2154)
评论(0)
推荐(0)

浙公网安备 33010602011771号