上一页 1 2 3 4 5 6 7 ··· 30 下一页
摘要: 放弃MFC,还是写QT了 添加新的弹出窗口 https://blog.csdn.net/keneyr/article/details/83895306 添加顶部menu https://blog.csdn.net/u014411348/article/details/53911682 可能会出现以下 阅读全文
posted @ 2020-03-30 10:46 啦啦啦天啦噜 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 2012年Alex等人在ImageNet大赛上以远超第二名的成绩夺冠,CNN重新受到了人们的重视 论文链接:http://www.cs.toronto.edu/~fritz/absps/imagenet.pdf 1 Introduction 相比于前向神经网络CNN拥有相似的层大小,并且拥有更少的层 阅读全文
posted @ 2020-03-19 20:41 啦啦啦天啦噜 阅读(170) 评论(0) 推荐(0) 编辑
摘要: Boosting [1997] A Decision-Theoretic Generalization of on-Line Learning and an Application to Boosting [1998] Boosting the margin A new explanation fo 阅读全文
posted @ 2020-03-19 15:44 啦啦啦天啦噜 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 很玄学,没有修改参数,在test上的准确率从98%多变为99.1%了 参考链接:《简单粗暴Tensorflow》,狂吹 import tensorflow as tf import numpy as np class MNISTLoader(): def __init__(self): mnist 阅读全文
posted @ 2020-03-15 19:56 啦啦啦天啦噜 阅读(706) 评论(0) 推荐(0) 编辑
摘要: 和svm差不多,感知机应该算svm的前身吧 import tensorflow as tf import numpy as np class MNISTLoader(): def __init__(self): mnist = tf.keras.datasets.mnist (self.train_ 阅读全文
posted @ 2020-03-15 15:57 啦啦啦天啦噜 阅读(387) 评论(0) 推荐(0) 编辑
摘要: 采用类的方式,参考链接 import tensorflow as tf x_data = tf.Variable(tf.random.uniform((1,3), -1.0, 1.0)) y_data = x_data * 0.1 + 0.3 class Linear(tf.keras.Model) 阅读全文
posted @ 2020-03-07 10:57 啦啦啦天啦噜 阅读(1519) 评论(0) 推荐(0) 编辑
摘要: 第十五节课 投影 投影矩阵P = A * A^T / (A^T * A) (PS:一维情况下) 投影矩阵的列空间是通过向量A的一条直线 投影矩阵的秩为1 投影矩阵是对称矩阵 投影矩阵的平方仍然是投影矩阵,即 P^2 = P ,做一次投影后,在做一次投影,得到的位置仍然是第一次投影的位置 投影矩阵P 阅读全文
posted @ 2020-02-08 13:28 啦啦啦天啦噜 阅读(555) 评论(0) 推荐(0) 编辑
摘要: TCP 服务端 #include<iostream> #include<winsock.h> #pragma comment(lib,"ws2_32.lib") using namespace std; void initialization() { //初始化套接字库 WORD w_req = M 阅读全文
posted @ 2019-11-17 20:52 啦啦啦天啦噜 阅读(200) 评论(0) 推荐(0) 编辑
摘要: SDS(simple dynamic string) 和c语言中的字符串类似,SDS在正常维护字符串之外引入了两个变量free和len,len用于记录当前存储的字符串长度(不包括末尾的‘\0’),free表示SDS结构中剩余可以分配的内存大小。 关于缓冲区溢出的问题 与 C 字符串不同, SDS 的 阅读全文
posted @ 2019-11-12 18:01 啦啦啦天啦噜 阅读(645) 评论(0) 推荐(0) 编辑
摘要: 全面的讲解页表,从一级页表开始 阅读全文
posted @ 2019-11-11 15:45 啦啦啦天啦噜 阅读(339) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 30 下一页