代码改变世界

决战Leetcode: easy part(1-50)

2018-01-25 13:58 by bluemapleman, 205 阅读, 0 推荐, 收藏, 编辑
摘要:本博客是个人原创的针对leetcode上的problem的解法,所有solution都基本通过了leetcode的官方Judging,个别未通过的例外情况会在相应部分作特别说明。欢迎互相交流!email: tomqianmaple@gmail.comTwo SumRe... 阅读全文

强化学习之五:基于模型的强化学习(Model-based RL)

2018-01-07 18:47 by bluemapleman, 2711 阅读, 0 推荐, 收藏, 编辑
摘要:本文是对Arthur Juliani在Medium平台发布的强化学习系列教程的个人中文翻译,该翻译是基于个人分享知识的目的进行的,欢迎交流!(This article is my personal translation for the tutorial writte... 阅读全文

强化学习之四:基于策略的Agents (Policy-based Agents)

2018-01-07 18:46 by bluemapleman, 1256 阅读, 0 推荐, 收藏, 编辑
摘要:本文是对Arthur Juliani在Medium平台发布的强化学习系列教程的个人中文翻译,该翻译是基于个人分享知识的目的进行的,欢迎交流!(This article is my personal translation for the tutorial writte... 阅读全文

强化学习之三点五:上下文赌博机(Contextual Bandits)

2018-01-07 18:44 by bluemapleman, 1825 阅读, 0 推荐, 收藏, 编辑
摘要:本文是对Arthur Juliani在Medium平台发布的强化学习系列教程的个人中文翻译,该翻译是基于个人分享知识的目的进行的,欢迎交流!(This article is my personal translation for the tutorial writte... 阅读全文

强化学习之三:双臂赌博机(Two-armed Bandit)

2018-01-07 18:42 by bluemapleman, 779 阅读, 0 推荐, 收藏, 编辑
摘要:本文是对Arthur Juliani在Medium平台发布的强化学习系列教程的个人中文翻译,该翻译是基于个人分享知识的目的进行的,欢迎交流!(This article is my personal translation for the tutorial writte... 阅读全文

强化学习之二:Q-Learning原理及表与神经网络的实现(Q-Learning with Tables and Neural Networks)

2018-01-07 18:41 by bluemapleman, 2911 阅读, 0 推荐, 收藏, 编辑
摘要:本文是对Arthur Juliani在Medium平台发布的强化学习系列教程的个人中文翻译。(This article is my personal translation for the tutorial written and posted by Arthur J... 阅读全文

机器学习之强化学习概览(Machine Learning for Humans: Reinforcement Learning)

2018-01-06 16:16 by bluemapleman, 1750 阅读, 0 推荐, 收藏, 编辑
摘要:声明:本文翻译自Vishal Maini在Medium平台上发布的《Machine Learning for Humans》的教程的《Part 5: Reinforcement Learning》的英文原文(原文链接)。该翻译都是本人(tomqianmaple@out... 阅读全文

强化学习之一:从TensorFlow开始(Start from TensorFlow)

2018-01-01 12:46 by bluemapleman, 2125 阅读, 0 推荐, 收藏, 编辑
摘要:本文是对Tensorflow官方教程的个人(tomqianmaple@outlook.com)中文翻译,供大家学习参考。官方教程链接tf的扬帆起航Getting Started With TensorFlow张量Tensorstf核心教程TensorFlow Core... 阅读全文

DNN训练技巧(Tips for Training DNN)

2017-12-26 17:19 by bluemapleman, 914 阅读, 0 推荐, 收藏, 编辑
摘要:本博客是针对李宏毅教授在Youtube上上传的课程视频《ML Lecture 9-1:Tips for Training DNN》的学习笔记。课程链接Recipe of Deep Learning训练集上效果差换激活函数New activation function自... 阅读全文

使用sklearn做单机特征工程(Performing Feature Engineering Using sklearn)

2017-12-25 18:34 by bluemapleman, 231 阅读, 0 推荐, 收藏, 编辑
摘要:本文转载自使用sklearn做单机特征工程目录目录特征工程是什么数据预处理1 无量纲化11 标准化12 区间缩放法13 标准化与归一化的区别2 对定量特征二值化3 对定性特征哑编码4 缺失值计算5 数据变换6 回顾特征选择1 Filter11 方差选择法12 相关系数... 阅读全文