Have you ever run out of RAM when doing some Deep Learning computation on your laptop instead of the server? One approach to solving this is to write out the data to disk. An alternative is to write a custom generator that reads the data. Recently I was attempting to …
Docker Cheat Sheet
Docker is a very useful tool for modern web development. It allows you encapsulate a computation with the operating system and associated libraries. In principle allowing you to worry less about implicit dependencies that you have on your code, as they must made clear by the docker file.
This post …
Doing Haskel Tutorial
Just some from the first chapter of the online version of Learn you a Haskell.
1 Starting Out
- make prompt prettier using
:set prompt "ghci> " 50 * -1is an error, must do `50 * (-1)'. It seems to me that this is something to do with how whatever Haskell equivalent …