File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -49,10 +49,11 @@ def find_MAP(
49
49
* args ,
50
50
** kwargs
51
51
):
52
- """
53
- Finds the local maximum a posteriori point given a model.
52
+ """Finds the local maximum a posteriori point given a model.
54
53
55
- find_MAP should not be used to initialize the NUTS sampler. Simply call pymc3.sample() and it will automatically initialize NUTS in a better way.
54
+ `find_MAP` should not be used to initialize the NUTS sampler. Simply call
55
+ ``pymc3.sample()`` and it will automatically initialize NUTS in a better
56
+ way.
56
57
57
58
Parameters
58
59
----------
@@ -79,10 +80,10 @@ def find_MAP(
79
80
80
81
Notes
81
82
-----
82
- Older code examples used find_MAP() to initialize the NUTS sampler,
83
+ Older code examples used ` find_MAP` to initialize the NUTS sampler,
83
84
but this is not an effective way of choosing starting values for sampling.
84
85
As a result, we have greatly enhanced the initialization of NUTS and
85
- wrapped it inside pymc3.sample() and you should thus avoid this method.
86
+ wrapped it inside `` pymc3.sample()`` and you should thus avoid this method.
86
87
"""
87
88
model = modelcontext (model )
88
89
You can’t perform that action at this time.
0 commit comments