Skip to content

Instantly share code, notes, and snippets.

View sleepsonthefloor's full-sized avatar

Anthony Young sleepsonthefloor

View GitHub Profile
@sleepsonthefloor
sleepsonthefloor / gist:2952b60e32540265cb0e81209d0bc1e8
Created September 5, 2018 17:28
Connect Four Positions that our best AlphaZero model + 10000 MCTS sims could not get right
For display purposes, 100% is rounded down to 99%
O's turn:
- - - - - - -
- - - - - - -
- - - - - - X
- - X O - - X
- - O X - - O
- X O X - - O
--------------------
# -*- coding: utf-8 -*-
"""Inception V3 model for Keras.
Note that the input image format for this model is different than for
the VGG16 and ResNet models (299x299 instead of 224x224),
and that the input preprocessing function is also different (same as Xception).
# Reference
- [Rethinking the Inception Architecture for Computer Vision](http://arxiv.org/abs/1512.00567)