Skip to content

Instantly share code, notes, and snippets.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@stjordanis
stjordanis / stock_price_autoencoding.ipynb
Created January 19, 2019 21:47 — forked from GerardBCN/stock_price_autoencoding.ipynb
Stock market Bitcoin data compression with autoencoders
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@stjordanis
stjordanis / gist:6c7f65ace7c2ec3acf8613860050dd82
Created January 20, 2019 02:52 — forked from GerardBCN/gist:9e0357c70873a2cfe5788d610b2d8261
Using temporal-difference - TD(0) or one-step TD to solve the gridworld task
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@stjordanis
stjordanis / monte_carlo.ipynb
Created January 20, 2019 02:52 — forked from GerardBCN/monte_carlo.ipynb
State-value function approximation for the gridworld task using Monte Carlo simulations
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@stjordanis
stjordanis / policy_iterator_RL_gridworld.ipynb
Created January 20, 2019 02:52 — forked from GerardBCN/policy_iterator_RL_gridworld.ipynb
Policy iterator for RL applied to gridworld
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@stjordanis
stjordanis / policy_iterator_RL_gridworld.ipynb
Created January 20, 2019 02:52 — forked from GerardBCN/policy_iterator_RL_gridworld.ipynb
Policy iterator for RL applied to gridworld
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@stjordanis
stjordanis / manipulation_explorer.ipynb
Created January 20, 2019 02:52 — forked from GerardBCN/manipulation_explorer.ipynb
Statistical analysis of Bitcoin price manipulation by Tether issuance in late 2017
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.

Install dlib and face_recognition on a Raspberry Pi

Instructions tested with a Raspberry Pi 2 with an 8GB memory card. Probably also works fine on a Raspberry Pi 3.

Steps

Download the latest Raspbian Jessie Light image. Earlier versions of Raspbian won't work.

Write it to a memory card using Etcher, put the memory card in the RPi and boot it up.

@stjordanis
stjordanis / eqc.md
Created January 31, 2019 17:37 — forked from efcasado/eqc.md
A gentle introduction to (Erlang) QuickCheck

Erlang QuickCheck

What is QuickCheck?

QuickCheck is a language for stating properties of programs.

?FORALL(X, nat(), X*X >= 0)