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: bayesflow/simulators/__init__.py
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,8 @@
1
+
"""
2
+
This module provides the :py:class:`~bayesflow.simulators.Simulator`, which is the base implementation of a generative mathematical model, data generating process.
3
+
Its primary function is to sample data with the :py:meth:`~bayesflow.simulators.Simulator.sample` method.
4
+
The module also contains several other kinds of Simulators, as well as the function :py:func:`~bayesflow.simulators.make_simulator` to facilitate easy implementation.
5
+
"""
1
6
from .sequential_simulatorimportSequentialSimulator
2
7
from .hierarchical_simulatorimportHierarchicalSimulator
0 commit comments