首页 > 2015年08月19日 > 全部分享
Neural Networks for Machine Learning by Geoffrey Hinton (3)
Neural Networks for Machine Learning by Geoffrey Hinton 训练感知机的方法并不能用以训练隐含层 训练感知机的方式是每次直接修正权重,最终得到满足所有凸锥里的权重。可行解的平均一定还是可行解。 对多层神经网络而言,2个可行解的平均并不一定是可行解。 They should never have been called mul...
分类:Web开发   时间:2015-08-19 14:55:04    收藏:0  评论:0  赞:0  阅读:451
android自定义Seekbar你还将你的拖动数值显示在旁边固定的TextView上么?
转载请注明出处:王亟亟的大牛之路实现并不复杂,理解透彻.setLayoutParams()方法就能很简单的实现了。项目结构: 上方显示的数值和位置会跟随你的拖动变化而变化MainActivitypublic class MainActivity extends Activity { private TextView num_tv; private SeekBar seekBar;...
分类:移动平台   时间:2015-08-19 14:54:54    收藏:0  评论:0  赞:0  阅读:433
BFS DFS 模板
/* 该 DFS 框架以 2D 坐标范围为例,来体现 DFS 算法的实现思想。 */ #include #include #include using namespace std; const int maxn=100; bool vst[maxn][maxn]; //访问标记 int map[maxn][maxn]; //坐标范围 int dir[4][2]= {0,1,0,-1,1,0,-1,...
分类:其他   时间:2015-08-19 14:54:34    收藏:0  评论:0  赞:0  阅读:435
OOP版电子词典
输入代码: /* * Copyright (c) 2014, 烟台大学计算机学院 * All rights reserved. * 文件名称:sum123.cpp * 作 者:林海云 * 完成日期:2015年8月19日 * 版 本 号:v2.0 * * 问题描述:做一个简单的电子词典。在文件dictionary.txt中,保存的是英汉对照的一个...
分类:其他   时间:2015-08-19 14:54:24    收藏:0  评论:0  赞:0  阅读:180
Hadoop之HDFS命令
概述 所有的HDFS命令都调用bin/hdfs脚本文件,如果运行hdfs脚本没有带任何参数的话,则打印所有命令的描述。 使用: hdfs [SHELL_OPTIONS] COMMAND [GENERIC_OPTIONS] [COMMAND_OPTIONS] Hadoop是一个参数解析框架,采用解析泛型选项以及运行类。 命令参数 描述 --config...
分类:其他   时间:2015-08-19 14:54:15    收藏:0  评论:0  赞:0  阅读:188
pat 2-07. 素因子分解
代码: #include #include #include using namespace std; int prime(int n) { if(n==2||n==3) { return 1; } if(n%6!=1&&n%6!=5) return 0; for(int i=5;i*i<=n;i+=6) {...
分类:其他   时间:2015-08-19 14:54:04    收藏:0  评论:0  赞:0  阅读:83
虚拟机器人
虚拟机器人能够陪你:聊天、笑话、故事、成语接龙、吉凶、新闻、星座、百科问答、图片、天气、菜谱、快递、计算、日期、飞机、列车、知识库。功能非常强大哦!...
分类:其他   时间:2015-08-19 14:53:54    收藏:0  评论:0  赞:0  阅读:168
POJ 1300 Door Man(欧拉回路_格式控制*)
Description You are a butler in a large mansion. This mansion has so many rooms that they are merely referred to by number (room 0, 1, 2, 3, etc...). Your master is a particularly absent-minded lou...
分类:其他   时间:2015-08-19 14:53:44    收藏:0  评论:0  赞:0  阅读:146
fzu 1075 分解素因子
代码: #include #include #include using namespace std; int prime(int n) { if(n==2||n==3) { return 1; } if(n%6!=1&&n%6!=5) return 0; for(int i=5; i*i<=n; i+=6) { ...
分类:其他   时间:2015-08-19 14:53:34    收藏:0  评论:0  赞:0  阅读:138
java debug
debu F5:跳入方法 F6:向下逐行调试 F7:跳出方法 F8:直接跳转到下一个断点...
分类:编程语言   时间:2015-08-19 14:53:24    收藏:0  评论:0  赞:0  阅读:386
Matlab 之 Warning: Variable 'a' cannot be saved to a MAT-file whose version is older than 7.3.
save mat文件的时候出现以下错误: matlab错误提示: Warning: Variable 'a' cannot be saved to a MAT-file whose version is older than 7.3. To save this variable, use the -v7.3 switch. Skipping... 解决办法: 1、打开ma...
分类:其他   时间:2015-08-19 14:53:14    收藏:0  评论:0  赞:0  阅读:298
积跬步,聚小流------具有滑动效果的导航
网上常用动态导航效果的代码分析...
分类:其他   时间:2015-08-19 14:53:04    收藏:0  评论:0  赞:0  阅读:120
hdu 1596 find the safest road(最长路)
find the safest road Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 9285    Accepted Submission(s): 3287 Problem Description XX星球有很多城...
分类:其他   时间:2015-08-19 14:52:54    收藏:0  评论:0  赞:0  阅读:174
TaoCode-淘宝的SVN开源托管平台
无意中发现的..试用了一下,感觉还不错, 简单说一下如何使用: 进入 http://code.taobao.org/project/explore/ 注册完后根据提示新建项目,然后在本地随便新建一个目录,检出的时候输入在taocode上新建的项目的svn repo.这样就基本完成了. 如果要导入别人的项目做法也是类似,只需要获得别人的svn repo,然后在本地创建一个目录,检...
分类:其他   时间:2015-08-19 14:52:44    收藏:0  评论:0  赞:0  阅读:264
HDU 1022.Train Problem I【栈的应用】【8月19】
Train Problem I Problem Description As the new term comes, the Ignatius Train Station is very busy nowadays. A lot of student want to get back to school by train(because the trains in the Igna...
分类:其他   时间:2015-08-19 14:52:34    收藏:0  评论:0  赞:0  阅读:216
spoj 10232 Distinct Primes(打表)
Distinct Primes Arithmancy is Draco Malfoy's favorite subject, but what spoils it for him is that Hermione Granger is in his class, and she is better than him at it.  Prime numbers are of mystical im...
分类:其他   时间:2015-08-19 14:52:24    收藏:0  评论:0  赞:0  阅读:239
反射调用android系统级API函数
try { Class mClass = Class.forName("com.android.server.wifi.WifiSettingsStore"); Constructor con=mClass.getDeclaredConstructor(Context.class); if(!con.isAccessible()){ con.setAccessible(t...
分类:移动平台   时间:2015-08-19 14:52:14    收藏:0  评论:0  赞:0  阅读:243
Android基础入门教程——2.3.8 SeekBar(拖动条)
Android基础入门教程——2.3.8 SeekBar(拖动条) 本节引言: 1.SeekBar基本用法 2.简单SeekBar定制 本节小结:...
分类:移动平台   时间:2015-08-19 14:52:04    收藏:0  评论:0  赞:0  阅读:231
公钥加密算法到底什么鬼
本文参考如下资料(建议阅读): a). 公钥加密 b). Diffie-Hellman密钥交换 c). 公钥证书 公钥加密算法又称非对称加密算法,围绕这一算法延伸出很多东西,比如:公私密钥对,密钥交换,身份验证,证书,签名。。。 1. 密钥对 我们先从密钥对说起,这是其他所有拓展技术的核心。 公私密钥对实际上是一种数学元素延伸出来的产物,产生的过程如下(起源的方式): ...
分类:编程语言   时间:2015-08-19 14:51:57    收藏:0  评论:0  赞:0  阅读:243
hdu1035
hdu1035是个模拟题,按照图上的方向走,走出grid,算出步数,走入循环,则输入循环体的个数有多少个,和走入循环体之前的个数多少个 #include #include using namespace std; struct node { char c; int count; }; node nd[1005][1005]; int n,m,root; int ste...
分类:其他   时间:2015-08-19 14:51:45    收藏:0  评论:0  赞:0  阅读:81
2501条   上一页 1 ... 70 71 72 73 74 ... 126 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!