MCPcopy Create free account
hub / github.com/commaai/research / mean_normal

Function mean_normal

models/autoencoder.py:31–32  ·  view source on GitHub ↗
(shape, mean=1., scale=0.02, name=None)

Source from the content-addressed store, hash-verified

29
30
31def mean_normal(shape, mean=1., scale=0.02, name=None):
32 return K.variable(np.random.normal(loc=mean, scale=scale, size=shape), name=name)
33
34
35def cleanup(data):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected