- 授权协议: MIT
- 开发语言: C/C++
- 操作系统: 跨平台
- 软件首页: https://github.com/glouw/tinn
- 软件文档: https://github.com/glouw/tinn/blob/master/README.md
- 官方下载: https://github.com/glouw/tinn
软件介绍
Tinn 是一个用 C99 编写的仅有 200 行代码微型神经网络库,无依赖,轻量级。同时支持任意 C++ 编译器进行编译。
#include "Tinn.h" #include <stdio.h> #define len(a) ((int) (sizeof(a) / sizeof(*a))) int main() { float in[] = { 0.05, 0.10 }; float tg[] = { 0.01, 0.99 }; /* Two hidden neurons */ const Tinn tinn = xtbuild(len(in), 2, len(tg)); for(int i = 0; i < 1000; i++) { float error = xttrain(tinn, in, tg, 0.5); printf("%.12f\n", error); } xtfree(tinn); return 0; }
微信营销与运营一册通
何秀芳、葛存山 / 人民邮电出版社 / 2014-10
《微信营销与运营一册通》深入介绍了当今最为火热的话题——微信营销,内容全面、系统和深入。它基于微信的最新版本,从策略、技巧与案例等多角度详细解析了微信的营销与运营,所有内容都是行业经验的结晶,旨在为企业或个人运用微信提供有价值的参考。《微信营销与运营一册通》主要内容如下。 * 5大微信营销利器:书中介绍了5大微信营销利器,包括漂流瓶、二维码、LBS功能、朋友圈和公众平台等。 * 6大微......一起来看看 《微信营销与运营一册通》 这本书的介绍吧!