摘要: https://www.freecodecamp.org/news/an-introduction-to-reinforcement-learning-4339519de419/ https://github.com/174high/Deep_reinforcement_learning_Cours 阅读全文
posted @ 2019-07-31 15:18 AI-LEARNER 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 1.const修饰函数返回值 (1)指针传递 如果返回const data,non-const pointer,返回值也必须赋给const data,non-const pointer。因为指针指向的数据是常量不能修改。 const int * mallocA(){ ///const data,no 阅读全文
posted @ 2019-01-06 22:29 AI-LEARNER 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 1. C++ const用法 尽可能使用const 2. C++ const 允许指定一个语义约束,编译器会强制实施这个约束,允许程序员告诉编译器某值是保持不变的。如果在编程中确实有某个值保持不变,就应该明确使用const,这样可以获得编译器的帮助。 3. 3.1.const 修饰成员变量 #inc 阅读全文
posted @ 2019-01-06 18:59 AI-LEARNER 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 1.欧几里德空间 约在公元前300年,古希腊数学家欧几里得建立了角和空间中距离之间联系的法则,现称为欧几里得几何。欧几里得首先开发了处理平面上二维物体的“平面几何”,他接着分析三维物体的“立体几何”,所有欧几里得的公理已被编排到叫做二维或三维欧几里得空间的抽象数学空间中。 这些数学空间可以被扩展来应 阅读全文
posted @ 2017-10-17 13:27 AI-LEARNER 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 执行go run helloWorld.go, 应该会打印出: 或者go build helloWorld.go,将生成helloWorld.sh,./helloWorld也可以运行。 阅读全文
posted @ 2017-09-22 11:18 AI-LEARNER 阅读(150) 评论(0) 推荐(0) 编辑
摘要: Vim 可以用来查看和编辑二进制文件 vim -b egenea-base.ko 加上-b参数,以二进制打开 然后输入命令 :%!xxd -g 1 切换到十六进制模式显示 阅读全文
posted @ 2017-09-13 16:50 AI-LEARNER 阅读(1679) 评论(0) 推荐(0) 编辑
摘要: https://github.com/174high/nueral_network_1 阅读全文
posted @ 2017-09-13 10:31 AI-LEARNER 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 1. https://github.com/174high/simple_cnn 自己fork的 2. https://github.com/can1357/simple_cnn 最初始的 3. 开始移植为 Python 或者 Java 版本的。 阅读全文
posted @ 2017-09-13 10:17 AI-LEARNER 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 1. https://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example/ 老外教程 2. https://github.com/mattm/simple-neural-network 代码路径 3. https://git 阅读全文
posted @ 2017-09-12 16:13 AI-LEARNER 阅读(434) 评论(0) 推荐(0) 编辑
摘要: Q-learning 相关的资料 https://www.youtube.com/watch?v=V1eYniJ0Rnk google deepmind 的Q-learning 算法打游戏的一个很酷的视频。请观看 1.http://www.pysnap.com/reinforcement-learn 阅读全文
posted @ 2017-05-04 23:06 AI-LEARNER 阅读(186) 评论(0) 推荐(0) 编辑