# -*- mode: snippet -*-
# name: pymc file
# key: pmf
# expand-env: ((yas-indent-line 'fixed))
# --
import pymc3 as pm

with pm.Model() as model:
    $0

if __name__ == '__main__':
    with model:
        start = {}
        trace = pm.sample(1000,
                          step=pm.NUTS(model.vars),
                          start=start)