Deep learning for NeuroImaging in Python.
Note
This page is a reference documentation. It only explains the function signature, and not how to use it. Please refer to the gallery for the big picture.
- nidl.experiment.load_interface(name: str, params: dict, version: str | None)[source]¶
Load an interface.
- Parameters:
name : str
the interface name argument that specifies what class to import in absolute terms, i.e. ‘my_module.my_class’.
params : dict
the interface parameters.
version : str, default None
the exppected modulee version.
- Returns:
cls : object
a class object.
code : str
the code of the output class object, None in case of issue.
Follow us