Mercurial > pylearn
view noise.py @ 513:6103dc5d2a0d
merged
author | James Bergstra <bergstrj@iro.umontreal.ca> |
---|---|
date | Thu, 30 Oct 2008 19:39:26 -0400 |
parents | 643dbccde1fc |
children |
line wrap: on
line source
def binomial(input, rstate, p = 0.75): """ Op to corrupt an input with binomial noise. Generate a noise vector of 1's and 0's (1 with probability p). We multiply this by the input. @note: See U{ssh://projects@lgcm.iro.umontreal.ca/repos/denoising_aa} to see how rstate is used. """ noise = rstate.gen_like(('binomial',{'p': p, 'n': 1}), input) noise.name = 'noise' return noise * input