Más sobre ajedrez y Go
- Métodos de búsqueda en árboles en ajedrez
- Muy recomendado: el documental AlphaGo en Netflix.
- Un artículo de The Verge sobre AlphaGo
This document holds some relevant links for the presentation that will take place on the 27th of Jan. in the Center for Hybrid Intelligence, at Aarhus University.
import click | |
import matplotlib.pyplot as plt | |
import numpy as np | |
def parse_string_to_int(string): | |
chars_as_ints = [ord(char) for char in string] | |
string_as_int = sum(chars_as_ints) | |
return string_as_int | |
def create_random_points(string=None): |