新的一个月,我要给自己立FLAG了, ABCDEFG HIJKLMN

天下事有难易乎,为之,则难者亦易矣,不为,则易者亦难矣。

这次采取的策略是,每完成一项work回来补充内容。希望能把这篇blog补满!!!

  1. TCG project —— EVIL

    • Using alpha-beta Search (逃~)
    • Using Monte-Carlo Tree Search
      • 如果有时间的话试试看,,不过目前看来 希望不大,现在考虑把TCL加上然后train一个高质量的AI出来
    • NegaMax? NegaScout.. if time is allowed
      • 因为player 和 evil 的策略会有不同,所以不能是用negaMax的形式,不过这些都不是问题,问题是我目前的做法仅仅是在当前状态继续往下搜索一层而已(看哪个branch的得分最小)。
      • 另外,发现一个严重的问题,learning rate非常难把握,0.01,0.001,0.0001甚至更小,但是发现练太久直接导致overfitting,而不知道在什么时候更换learning rate也很蛋疼,,记得一开始练出一个很强的AI把对方限制在2000分,后来越练越烂,对打的时候发现AI已经不会玩了。这个找机会再修改吧。
      • 仅仅使用TD learning还是不够强,虽然我的feature已经足够好了,但是这和使用了TCL(Temporal Coherence Learning)的AI相差很远,找个机会把TCL弄清楚然后加上去。
      • Mastering 2048 with Delayed Temporal Coherence Learning, Multi-State Weight Promotion, Redundant Encoding and Carousel Shaping
        • Jaśkowski, Wojciech. "Mastering $2048 $ with Delayed Temporal Coherence Learning, Multi-State Weight Promotion, Redundant Encoding and Carousel Shaping." arXiv preprint arXiv:1604.05085 (2016).
    • How many ply?
      • 233333
    • Time limited?
  2. Proof number Search
  3. Presentation
    • Dual Lambda Search and Shogi Endgames

      • Lambda Search (single goal)
      • Lambda Search (composite goal)
      • Dual Lambda Search
      • Proof number Search (Depth-First Proof-Number Search)
      • Shogi Endgames
        • 将棋的残局:诘将棋和必至,前者是连将杀,特点是每一手都要王手(将军),后者则是更像中国象棋排局那样,不在乎是否每手都要将军,最后封死玉将即可。
        • Check (將軍,則稱為王手(おうて)
        • Checkmate(narrow sense): ( 將死或將殺,簡稱殺)
        • Brinkmate (narrow sense): ( 绝杀,必至 )
      • others?
    • Slide (maybe can use beamer?) using google doc...23333
    • Discuss wih やきねこ & teacher
  4. Unix Network Programming
    • Project 3

      • 目前进度,,搞懂了CGI到底是什么鬼,好象是可以开始写了。23333
      • part1_cgi:
        • Write a CGI program to receive an HTTP request
        • Then, the CGI program connects to the three ras or rwg servers and then redirects the batch file (stored in the HTTP server) as input to these servers.
        • hen receiving messages, send these messages back to the browser as the returning web page. Note that the returning web page includes several columns,one for displaying the returning messages from each server.
      • part2_httpserver:
        • Write a simple http server in Unix to support CGI.
        • This must work with TA's CGI programs (samples will be posted) and the previous CGI you wrote.
      • part3_httpserver+cgi in windows:
        • simple http server which only provides the remote batch service, that is, it is the combination of 1st part and 2nd part.
        • implement Nonblocking by API WASAsyncSelect easily, than implement the corresponding event to each action. Since the program combines HTTP and CGI, it is both server(for browser) and client(for ras/rwg). Thus, you need to define another messege to handle different event.
  5. Seminar
    • Giraffe: Using Deep Reinforcement Learning to Play Chess ?? (next time? not sure)
    • Dancing Links?? puzzles soduko?
  6. 统计学习方法(not sure)
  7. 西瓜书(not sure)
  8. 神书 —— Searching for Solutions in Games and Artificial Intelligence
  9. Chimo
    • UCCI Battle System
  10. Data Mining report

Month Scheme的更多相关文章

  1. SQL Server ->> 生成时间类型的Partition Function和Partition Scheme代码

    有时工作中要建个分区函数,可是像日期这种分区函数要是搞个几百个的值那不是要搞死我.于是写了点代码自动生成一个从1990年开始的按月的分区函数和对应的分区主题 USE [TestDB] GO DECLA ...

  2. Partition:Partiton Scheme是否指定Next Used?

    在SQL Server中,为Partition Scheme多次指定Next Used,不会出错,最后一次指定的FileGroup是Partition Scheme的Next Used,建议,在执行P ...

  3. Android业务组件化之URL Scheme使用

    前言: 最近公司业务发展迅速,单一的项目工程不再适合公司发展需要,所以开始推进公司APP业务组件化,很荣幸自己能够牵头做这件事,经过研究实现组件化的通信方案通过URL Scheme,所以想着现在还是在 ...

  4. iOS - URL Scheme 操作

    推荐JLRoutes路由跳转 NSScanner 在寻找更加灵活的页面跳转和通知,我遇见了JLRoutes,从而学习使用URL Scheme来定义界面入口.以前从来没有使用过,不过很多大厂和流行的框架 ...

  5. This month Calendar

    package fourth;import java.text.DateFormatSymbols;import java.util.*;public class CalendarTest { pub ...

  6. 自定义 URL Scheme 完全指南

    本文由 Migrant 翻译自 The Complete Tutorial on iOS/iPhone Custom URL Schemes,转载请注明出处. 注意: 自从自定义 URL 的引入,本文 ...

  7. JS魔法堂:Data URI Scheme介绍

    一.前言 上周五公司内部的Any Topic Conf.上我和同事们分享了这个主题,有同事说这个有用,有同事说这个没啥用,后来还延伸到网站性能的话题上,大家讨论的激烈程度让我觉得这次选题还不错.本篇先 ...

  8. CSS魔法堂:小结一下Box Model与Positioning Scheme

    前言  对于Box Model和Positioning Scheme中3种定位模式的细节,已经通过以下几篇文章记录了我对其的理解和思考.  <CSS魔法堂:重新认识Box Model.IFC.B ...

  9. Project、Target、Workspace and Scheme

    前言 今天有人问我Target和Project是什么关系?额...学习iOS开发都知道Target和Project的关系.这里我就简单的做了一个总结,而且加入的Scheme和Workspace.如果不 ...

随机推荐

  1. NodeJs+Request+Cheerio 采集数据

    目的:采集网站文章. 两个依赖项: request :https://github.com/request/request cheerio:https://github.com/cheeriojs/c ...

  2. 从零开始编写自己的C#框架(23)——上传组件使用说明

    文章导航 1.前言 2.上传组件功能说明 3.数据库结构 4.上传配置管理 5.上传组件所使用到的类 6.上传组件调用方法 7.效果演示 8.小结 1.前言 本系列所使用的是上传组件是大神July开发 ...

  3. Oracle数据库升级(10.2.0.4->11.2.0.4)

    环境: RHEL5.4 + Oracle 10.2.0.4 目的: 在本机将数据库升级到11.2.0.4 之前总结的Oracle数据库异机升级:http://www.cnblogs.com/jyzha ...

  4. SQL Tuning 基础概述05 - Oracle 索引类型及介绍

    一.B-Tree索引 三大特点:高度较低.存储列值.结构有序 1.1利用索引特性进行优化 外键上建立索引:不但可以提升查询效率,而且可以有效避免锁的竞争(外键所在表delete记录未提交,主键所在表会 ...

  5. Rafy 框架 - 使用 SqlTree 查询

    本文介绍如何使用 Rafy 框架中的 Sql Tree 查询: 除了开发者常用的 Linq 查询,Rafy 框架还提供了 Sql 语法树的方式来进行查询. 这种查询方式下,开发者不需要直接编写真正的 ...

  6. Sqlserver调用api

    虽然使用sqlserver去调用服务接口的情况比较少,但也可以去了解下对应的使用情况 一.首先要开启组件的配置 sp_configure ; GO RECONFIGURE; GO sp_configu ...

  7. C++智能指针

    引用计数技术及智能指针的简单实现 基础对象类 class Point { public: Point(int xVal = 0, int yVal = 0) : x(xVal), y(yVal) { ...

  8. 【Asp.Net Core】二、添加控制器和视图

    控制器Controller 在添加控制器前,我们先看下它为我们自动生成的一些Controller,我们看下AccountController.cs 来看下登录验证方法Login async这个应该是异 ...

  9. linux系统编程之进程(二):进程生命周期与PCB(进程控制块)

    本节目标: 进程状态变迁 进程控制块 进程创建 进程撤消 终止进程的五种方法 一,进程状态变迁 进程的三种基本状态 就绪(Ready)状态 当进程已分配到除CPU以外的所有必要的资源,只要获得处理机便 ...

  10. Nginx配置文件nginx.conf中文详解(转)

    ######Nginx配置文件nginx.conf中文详解##### #定义Nginx运行的用户和用户组 user www www; #nginx进程数,建议设置为等于CPU总核心数. worker_ ...