File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 11"""
22A collection of `keras.utils.PyDataset <https://keras.io/api/utils/python_utils/#pydataset-class>`__\ s, which
3- wrap your data-generating process (i.e., your :py:class:`~bayesflow.simulators.Simulator`).
4- What type of Dataset you use determines the effective training strategy (e.g., online or offline).
3+ wrap your data-generating process (i.e., your :py:class:`~bayesflow.simulators.Simulator`) and thus determine the
4+ effective training strategy (e.g., online or offline).
55"""
66
77from .offline_dataset import OfflineDataset
Original file line number Diff line number Diff line change 11"""
2- Unstable or largely untested networks. Proceed with caution.
2+ Unstable or largely untested networks, proceed with caution.
33"""
44
55from .cif import CIF
Original file line number Diff line number Diff line change 11"""
2- This module provides the :py:class:`~bayesflow.simulators.Simulator`, which is the base implementation of a
3- generative mathematical model, or data generating process.
4- Its primary function is to sample data with the :py:meth:`~bayesflow.simulators.Simulator.sample` method.
5- The module also contains several other kinds of Simulators, as well as the function
6- :py:func:`~bayesflow.simulators.make_simulator` to facilitate easy implementation.
2+ This module provides :py:class:`~bayesflow.simulators.Simulator`, :py:function:`~bayesflow.simulators.make_simulator`,
3+ and several other kinds of :py:class:`~bayesflow.simulators.Simulator` implementations, which serve as generative
4+ mathematical models, or data generating processes, with their primary function being to sample data.
75"""
86
97from .sequential_simulator import SequentialSimulator
You can’t perform that action at this time.
0 commit comments