Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bayesflow/experimental/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from .cif import CIF
from .continuous_time_consistency_model import ContinuousTimeConsistencyModel
from .free_form_flow import FreeFormFlow

from ..utils._docs import _add_imports_to_all

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
deserialize_value_or_type,
)

from ..inference_network import InferenceNetwork
from bayesflow.networks import InferenceNetwork


@serializable(package="networks.free_form_flow")
Expand Down
1 change: 0 additions & 1 deletion bayesflow/networks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from .coupling_flow import CouplingFlow
from .deep_set import DeepSet
from .flow_matching import FlowMatching
from .free_form_flow import FreeFormFlow
from .inference_network import InferenceNetwork
from .mlp import MLP
from .lstnet import LSTNet
Expand Down
4 changes: 2 additions & 2 deletions tests/test_networks/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ def coupling_flow_subnet(subnet):

@pytest.fixture()
def free_form_flow():
from bayesflow.networks import FreeFormFlow
from bayesflow.experimental import FreeFormFlow

return FreeFormFlow()


@pytest.fixture()
def free_form_flow_subnet(subnet):
from bayesflow.networks import FreeFormFlow
from bayesflow.experimental import FreeFormFlow

return FreeFormFlow(encoder_subnet=subnet, decoder_subnet=subnet)

Expand Down