仓库源文站点原文


title: 一个用蒙特卡罗方法自动玩2048的仓库 toc: true cover: 'https://img.paulzzh.com/touhou/random?4' date: 2020-09-18 19:20:37 categories: 技术杂谈 tags: [技术杂谈, 蒙特卡罗方法, 2048]

description: 今天在RSS上被推送了一个自动玩2048的代码仓库,用的是蒙特卡罗算法,感觉挺有意思的;

今天在RSS上被推送了一个自动玩2048的代码仓库,用的是蒙特卡罗算法,感觉挺有意思的;

这里推荐给大家玩一下;

源代码:

示例网站:

<br/>

<!--more-->

<br/>

一个用蒙特卡罗方法自动玩2048的仓库

Gabriel Romualdo这个作者在他的博客写了使用蒙特卡罗方法自动玩2048的文章:

https://xtrp.io/blog/2020/09/12/using-the-monte-carlo-tree-search-algorithm-in-an-ai-to-beat-2048-and-other-games/

<BR/>

蒙特卡罗方法维基百科:

https://zh.wikipedia.org/wiki/%E8%92%99%E5%9C%B0%E5%8D%A1%E7%BE%85%E6%96%B9%E6%B3%95

大家也可以上这个网站来体验一下:

https://jupiter.xtrp.io/

关于实现原理,文章做了一定的分析,大家也可以借助源代码来学习:

https://github.com/xtrp/jupiter

<br/>