- Métodos de búsqueda en árboles en ajedrez
- Muy recomendado: el documental AlphaGo en Netflix.
- Un artículo de The Verge sobre AlphaGo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.
- Here's a link to my M.Sc. thesis: http://bdigital.unal.edu.co/74472/1/1053838200.2019.pdf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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): |