Public Snippets

This tutorial explains how you can login to remote computers over ssh without typing in your password all the time, using public key authorization.
If you want to use the new multiprocessing module in Python 2.6 within a class, you might run into some problems. Here's a trick how to do a work-around.
Python implementation of a radial basis function network. The basis functions are (unnormalized) gaussians, the output layer is linear and the weights are learned by a simple pseudo-inverse.
Run this script in the folder where the .png images are stored. mencoder will create a avi video with the given framerate (fps).
This implementation of a standard feed forward network (FNN) is short and efficient, using numpy's array multiplications for fast forward and backward passes. The source code comes with a little example, where the network learns the XOR problem.