Python

Using a char-rnn on the R manual

Character recurrent neural networks have become very popular in recent years in the deep learning community for learning probability distributions over sequences of characters. More concretely, the probably of an “o” given the sequence of letters “hell” . There are many ways to model sequences of characters, and it does not have to be accomplished with either a recurrent neural network or on a character level. E.g., simple markov models can perform reasonably in this context (reasonably not defined.

Reading in data in Julia, R, and Python

I’ve been fairly interested in the Julia programming language recently. Haven’t heard of it? From the project website: “Julia is a high-level, high-performance dynamic programming language for technical computing.” From what I understand, it’s a programming language intended to provide a high-level programming interface with similar features to R / Python / Matlab at near C-level speed. Sounds pretty intriguing right? The language is fairly new, so its ecosystem is not as mature as R’s or Python’s.