Chen Dagui's Blog

Machine Learning


  • Home

  • Archives

  • Tags

  • Categories

  • About

  • Commonweal 404

  • Search

data structure

Posted on 2017-04-14 | In algorithm | | Visitors
data structure二叉搜索树二叉搜索树是一个满足以下性质的二叉树 对于任何结点$x$, 其左子树中的关键字最大不超过$x.key$, 其右子树中的关键字最小不低于$x.key$. 不同的二叉搜索树可以代表同一组值的集合, 大部分搜索树的最坏运行时间与树的高度成正比 遍历先序遍历(pre ...
Read more »

RL6 Value Function Approximation

Posted on 2017-04-12 | In reinforcement learning | | Visitors
reference: UCL Course on RL lecture 6 Value Function ApproximationIntroductionLarge-Scale Reinforcement LearningReinforcement learning can be used ...
Read more »

sortAlgorithm

Posted on 2017-04-11 | In algorithm | | Visitors
Several pseudo-code for sort algorithmbubble sortworst time complexity: $O(n^2)$best time complexity $O(n)$average time complexity $O(n^2)$additional ...
Read more »

RL5 Model-Free Control

Posted on 2017-04-10 | In reinforcement learning | | Visitors
reference: UCL Course on RL lecture 5: Model-Free ControlIntroductionOptimise the value function of an unknown MDP Model-free control can solve the ...
Read more »

RL4 Model-Free Prediction

Posted on 2017-04-06 | In reinforcement learning | | Visitors
reference: UCL Course on RL Lecture 4 Model-Free PredictionEstimate the value function of an unknown MDP Monte-Carlo Reinforcement learning MC meth ...
Read more »

RL3 Planning by Dynamic Programming

Posted on 2017-04-05 | In reinforcement learning | | Visitors
reference: UCL Course on RL lecture 3 Planning by Dynamic ProgrammingintroductionDefinition Dynamic: sequential or temporal component to the proble ...
Read more »

RL1 Introduction to RL

Posted on 2017-03-30 | In reinforcement learning | | Visitors
reference: UCL Course on RL lecture 1 Introduction to Reinforcement Learningreinforcement learning feature no supervisor, only a reward signal del ...
Read more »

RL2 Markov decision Processes

Posted on 2017-03-30 | In reinforcement learning | | Visitors
reference: UCL Course on RL lecture 2 Markov decision ProcessesMDP formally describe an environment for RL, where the environment is fully observab ...
Read more »

keyboard_shortcuts

Posted on 2017-03-16 | In work tips | | Visitors
这里记录一些快捷键Ubuntu的快捷键alt+F7 : 移动窗口alt+F9 : 最小化窗口alt+F10: 最大化窗口 vim快捷键help模式下Ctrl+] 跳转到链接位置Ctrl+t 返回上次的页面
Read more »

runR

Posted on 2016-11-13 | In software setting | | Visitors
Linux下使用R运行linux下的R脚本编写R文件 新建后缀名为R的文件 写入R程序 在脚本首行加入1#!/usr/bin/Rscript 运行R文件这里有两种方式 进入R的环境运行文件1> source('test.R') 注意到在R的环境里面运行脚本,可以保持变量仍然处于环境中 直接 ...
Read more »
123
Dagui Chen

Dagui Chen

goblin_chen@163.com

26 posts
8 categories
24 tags
Github E-Mail Google
© 2017 Dagui Chen
Powered by Hexo
Theme - NexT.Mist