摘要:
ReLu(Rectified Linear Units)激活函数论文参考:Deep Sparse Rectifier Neural Networks (很有趣的一篇paper)起源:传统激活函数、脑神经元激活频率研究、稀疏激活性传统Sigmoid系激活函数传统神经网络中最常用的两个激活函数,Sigmoid系(Logistic-Sigmoid、Tanh-Sigmoid)被视为神经网络的核心所在。从数... 阅读全文
摘要:
3月初发布的树莓派3自带了WiFi和蓝牙,再加上它本来就有一个网口,因此俨然就是一台无线路由器了。我也忍不住入手了一个,打算用来做路由器和NAS。树莓派做路由器的教程已经有很多了,当然,基本都是基于树莓派2的,3之前的版本都没有自带WiFi,因此需要自己配无线网卡,而3自带了无线网卡,配置就方便多了。参考了两篇外文教程,成功配置,在这里记录一下。参考教程:https://frillip.com/u... 阅读全文
摘要:
目前Ubuntu 自带的GCC版本为4.6,遗憾的是在实际使用时,反而版本越高越好问题越多,所以,一旦遇到编译问题时最好先检查你下载的工程里的readme,默认的编译器版本是否为当前的安装版本,如果不是,就需注意很可能是版本兼容问题(甚至你可能是第一个遇到此BUG的幸运者),初步调试后即可尝试降低版本测试。目前主流gcc版本有两个,一个是gcc4.4,一个是gcc最新版本(4.6),下文介绍这两个... 阅读全文
摘要:
IntroductionUFW is a firewall configuration tool for iptables that is included with Ubuntu by default. This cheat sheet-style guide provides a quick reference to UFW commands that will create iptables... 阅读全文
摘要:
Not counting obtaining the source code, and once you have the prerequisites satisfied, [Windows] users can build from source code in 5 easy steps.Prerequisites – Install & ensure they are in the $PATH... 阅读全文
摘要:
IntroductionLog4cplus is derived by the popular Log4j written in java.This tutorial show how create:a configuration filedefine custom log for classesdefine custom appenderscode examplehow and when use... 阅读全文
摘要:
由来继上一篇文章, 发现之前写的一篇文章中断线重连部分是错误的, 也是现在翻阅了源码才知道想要自动重连, 必须使用ConnectOptionsMap才可以但由于官方代码没有做好导出部分的处理, 直接使用此类型会造成内存异常(跨模块传递STL对象)所以本人简单的添加了几个导出函数, 绕过了这个问题添加代码在connection.h中, 找到typedef std::map ConnectOption... 阅读全文
摘要:
本文把makefile 分成了三份:生成可执行文件的makefile,生成静态链接库的makefile,生成动态链接库的makefile。 这些makefile都很简单,一般都是一看就会用,用法也很容易,只需要把它们拷贝到你的代码的同一目录下,然后就可以用 make 来生成目标文件了。 下面是三个makefile的源代码:1、生成可执行文件的makefile#################... 阅读全文
摘要:
If you follow Android Police, there's a good chance you've got a rooted device, whether it be an easy-to-root Nexus or something like a Galaxy that takes more effort to do so. It's also very possible ... 阅读全文
摘要:
How to use DBVisualizer to connect to Hbase using Apache PhoenixArticleDB Visualizer is a popular free tool that allows developers to organize development tools for RDBMS development. With Apache Phoe... 阅读全文