牛骨文教育服务平台(让学习变的简单)
博客笔记

			
				深度学习BP算法的推导(附加RNN,LSTM的推导说明)
深度学习BP算法的推导(附加RNN,LSTM的推导说明) 2014-12-09
注:1)这篇文章主要参考Alex Graves的博士论文《Supervised Sequence Labelling with Recurrent Neural Networks》 详细介绍其关于BP算法的推导过程。          2)论文
21
2015-12
浅谈卫星电视接收 2015-12-21
这篇博客所讲的是关于卫星电视接收的一些基础知识,不一定多么详细,但是能够把整个框架理清楚。 首先从卫星satellite讲起,卫星的作用是转发,通过卫星
16
2018-04
vue 常用UI库 2018-04-16
UI组件element ★9305 - 饿了么出品的Vue2的web UI工具套件Vux ★6802 - 基于Vue和WeUI的组件库mint-ui ★4776 - Vue 2的移动UI元素iview ★4458 - 基于 Vuejs 的开源 UI 组
20
2017-12
数据结构实验之排序二:交换排序 2017-12-20
数据结构实验之排序二:交换排序 Time Limit: 1000MS Memory Limit: 65536KB Submit Statistic Problem Description 冒泡排序和快速排序都是基于”交换”进行的排序方法,你的
16
2015-09
Product of Array Except Self 2015-09-16
Given an array of n integers where n > 1, nums, return an array output such that output[i] is equal to the product of all the elements of nums except nums[i]. Solve it without division
17
2016-05
LeetCode- 238. Product of Array Except Self 2016-05-17
Problem: Given an array of n integers where n > 1, nums, return an array output such that output[i] is equal to the product of all the elements of nums except nums[i]. Solve it without division
17
2016-04
linux下C实现对键盘事件的监听(按下键盘的时候程序立刻读取) 2016-04-17
#include #include int scanKeyboard() { int in; struct termios new_settings; struct termios stored_settings; tcgetattr(0,&stored_settings); new_settings = stored_settings; new_settings.c_lflag &= (~I
08
2015-09
Java获取键盘输入的三种方法 2015-09-08
Java获取键盘输入的三种方法: import java.util.Scanner; public class Test01 { public static void main(String args[]) { // Java获取键盘输入方法一: // System.in.read(

			
				C/C++获取键盘事件
C/C++获取键盘事件 2017-12-09
在vs中可以使用_kbhit()函数来获取键盘事件,使用时需要加入conio.h头文件,例: #include #include using namespace std; int main() { int ch; while (1){ if (_kbhit
07
2013-04
C/C++ 获得键盘按键代码 2013-04-07
写推箱子小游戏的时候需要读取键盘 写了个快速获得代码的小程序 #include #include int main() { int a; while(1) { a=getch(); std::cout