You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/api.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -160,7 +160,7 @@ returned(::Model)
160
160
161
161
## Utilities
162
162
163
-
It is possible to manually increase (or decrease) the accumulated log density from within a model function.
163
+
It is possible to manually increase (or decrease) the accumulated log likelihood from within a model function.
164
164
165
165
```@docs
166
166
@addlogprob!
@@ -345,6 +345,22 @@ Base.empty!
345
345
SimpleVarInfo
346
346
```
347
347
348
+
### Accumulators
349
+
350
+
The subtypes of [`AbstractVarInfo`](@ref) store the cumulative log prior and log likelihood, and sometimes other variables that change during executing, in what are called accumulators.
351
+
352
+
```@docs
353
+
AbstractAccumulators
354
+
```
355
+
356
+
DynamicPPL provides the following default accumulators.
0 commit comments