{ "cells": [ { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "_tUJXH8of9iE" }, "source": [ "# \"AlphaGo - Mastering the game of Go with deep neural networks and tree search\"\n", "> \"This post is from Deepmind and OpenAI papers series, which I try to summarize and take some notes from some interesting papers from Deepmind and OpenAI. Here I will start with AlphaGo, which tries to combine the Monte Carlo Tree Search algorithm with deep learning to play Go.\"\n", "\n", "- toc:true\n", "- branch: master\n", "- badges: true\n", "- comments: true\n", "- author: Isaac Kargar\n", "- categories: [machine learning, deep learning]\n", "- show_image: true\n", "- image: _notebooks/my_icons/alphago/alphago_0.png" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "dTFH737wf9iF" }, "source": [ "![](https://github.com/kargarisaac/blog/blob/master/_notebooks/my_icons/alphago/alphago_0.png?raw=1)" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "rbj6s_C7f9iG" }, "source": [ "![](https://github.com/kargarisaac/blog/blob/master/_notebooks/my_icons/alphago/alphago_1.jpeg?raw=1)" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "5VkFulRIf9iH" }, "source": [ "![](https://github.com/kargarisaac/blog/blob/master/_notebooks/my_icons/alphago/alphago_2.jpeg?raw=1)" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "0de4DiCWf9iI" }, "source": [ "![](https://github.com/kargarisaac/blog/blob/master/_notebooks/my_icons/alphago/alphago_3.jpeg?raw=1)" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "BbYT7Hsrf9iJ" }, "source": [ "![](https://github.com/kargarisaac/blog/blob/master/_notebooks/my_icons/alphago/alphago_4.jpeg?raw=1)" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "o-1dmbatf9iK" }, "source": [ "![](https://github.com/kargarisaac/blog/blob/master/_notebooks/my_icons/alphago/alphago_5.jpeg?raw=1)" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "_IZaVKxef9iL" }, "source": [ "![](https://github.com/kargarisaac/blog/blob/master/_notebooks/my_icons/alphago/alphago_6.jpeg?raw=1)" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "DH0gIo-2f9iM" }, "source": [ "![](https://github.com/kargarisaac/blog/blob/master/_notebooks/my_icons/alphago/alphago_7.jpeg?raw=1)" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "ts03Mbrof9iN" }, "source": [ "![](https://github.com/kargarisaac/blog/blob/master/_notebooks/my_icons/alphago/alphago_8.jpeg?raw=1)" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "mc3dIMbkf9iO" }, "source": [ "That’s it for the first one. In the next post, I will review the AlphaGo Zero paper." ] } ], "metadata": { "colab": { "name": "2020-04-12-AlphaGo.ipynb", "provenance": [] }, "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.13" }, "varInspector": { "cols": { "lenName": 16, "lenType": 16, "lenVar": 40 }, "kernels_config": { "python": { "delete_cmd_postfix": "", "delete_cmd_prefix": "del ", "library": "var_list.py", "varRefreshCmd": "print(var_dic_list())" }, "r": { "delete_cmd_postfix": ") ", "delete_cmd_prefix": "rm(", "library": "var_list.r", "varRefreshCmd": "cat(var_dic_list()) " } }, "types_to_exclude": [ "module", "function", "builtin_function_or_method", "instance", "_Feature" ], "window_display": false } }, "nbformat": 4, "nbformat_minor": 1 }