Skip to content

Instantly share code, notes, and snippets.

View jagin's full-sized avatar

Jarosław Gilewski jagin

View GitHub Profile
@joshfp
joshfp / walker-SGD.ipynb
Created November 5, 2018 08:02
Walker SGD
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@alexmacedo
alexmacedo / pipeline.py
Created January 3, 2012 00:08
Unix pipeline pattern in python
#! /usr/bin/env python
class Pipeline(object):
def __init__(self):
self.source = None
def __iter__(self):
return self.generator()
def generator(self):