摘要:
1.引言卷积神经网络(Convolutional Neural Networks , CNN)受到视网膜上的细胞只对视野范围内的部分区域敏感,这一部分区域称为感受域(receptive field).卷积神经网络正是采用了这种机制,每一个神经元只与一部分输入相连接。2.稀疏连接CNNs通过局部连接的... 阅读全文
摘要:
目录:Linked List CycleBinary Tree Right Side ViewAdd Two NumbersWord BreakTwo Sum3SumGas StationLinked List Cycle IILinked List Cycle 返回目录Given a linked... 阅读全文
摘要:
1.引言一个多层感知机(Multi-Layer Perceptron,MLP)可以看做是,在逻辑回归分类器的中间加了非线性转换的隐层,这种转换把数据映射到一个线性可分的空间。一个单隐层的MLP就可以达到全局最优。2.模型一个单隐层的MLP可以表示如下:一个隐层的MLP是一个函数:$f:R^{D}\r... 阅读全文
摘要:
1 # -*- coding: utf-8 -*- 2 """ 3 Created on Wed Apr 22 17:39:19 2015 4 5 @author: 90Zeng 6 """ 7 8 import numpy 9 import theano10 import theano.te... 阅读全文
摘要:
单链表反转笔记: 1 #include 2 #include 3 using namespace std; 4 5 struct ListNode 6 { 7 int val; 8 ListNode* next; 9 ListNode(int i):val(i),next(... 阅读全文
摘要:
1.如下代码输出结果是什么?12345678910111213141516#includechar *myString(){char buffer[6] = {0};char *s ="Hello World!";for (int i =0; i using namespace std;class ... 阅读全文
摘要:
1 #include 2 #include 3 #include 4 using namespace std; 5 void knuth(int n, int m) 6 { 7 srand((unsigned int)time(NULL)); 8 for (int i = 0; i... 阅读全文
摘要:
前言:这是关于LeetCode上面练习题C++的笔记,有些地方参考有网友的解题方法(可能有些参考没能注明,望谅解),如有需要改进的地方希望留言指教,多谢!目录:ZigZag ConversionReverse digits of an integerImplementatoito convert a... 阅读全文