Skip to content

Instantly share code, notes, and snippets.

View ferrine's full-sized avatar

Maxim Kochurov ferrine

View GitHub Profile
Coal, peat and oil shale-Production (ktoe)
Coal, peat and oil shale-Imports (ktoe)
Coal, peat and oil shale-Exports (ktoe)
Coal, peat and oil shale-Total primary energy supply (ktoe)
Coal, peat and oil shale-Electricity plants (ktoe)
Coal, peat and oil shale-CHP plants (ktoe)
Coal, peat and oil shale-Heat plants (ktoe)
Coal, peat and oil shale-Oil refineries, transformation (ktoe)
Coal, peat and oil shale-Total final consumption (ktoe)
Coal, peat and oil shale-Industry (ktoe)
@ferrine
ferrine / bayes.py
Created August 3, 2016 22:35
bayes by backprop wrapping
import math
from functools import wraps
from theano import tensor as T
from theano.sandbox.rng_mrg import MRG_RandomStreams as RandomStreams
from lasagne import init
from lasagne.random import get_rng
__all__ = ['Accumulator', 'NormalApproximation', 'NormalApproximationScMix', 'bbpwrap']