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.
- surfify.models.vgg.class_factory(klass_name, klass_params, destination_module_globals)[source]ΒΆ
Dynamically define a class.
In order to make the class publicly accessible, we assign the result of the function to a variable dynamically using globals().
- Parameters:
klass_name : str
the class name that will be created.
klass_params : dict
the class specific parameters.
Follow us