| Trees | Indices | Help |
|
|---|
|
|
Abstract base class for various stimulus-response types of analysis.
This type of analysis consists of presenting a set of input patterns and collecting the responses to each one, which one will often want to do in a way that does not affect the current state of the network.
To achieve this, the class defines several types of hooks where arbitrary function objects (i.e., callables) can be registered. These hooks are generally used to ensure that unrelated previous activity is eliminated, that subsequent patterns do not interact, and that the initial state is restored after analysis.
Any subclasses must ensure that these hook lists are run at the appropriate stage in their processing, using e.g. "for f in some_hook_list: f()".
|
|||
|
Inherited from |
|||
|
|||
|
Inherited from Inherited from Inherited from |
|||
|
|||
|
Inherited from |
|||
|
|||
__abstract = Truebool(x) -> bool |
|||
pre_analysis_session_hooks = param.HookList(default= [], instaList of callable objects to be run before an analysis session begins. |
|||
pre_presentation_hooks = param.HookList(default= [], instantiaList of callable objects to be run before each pattern is presented. |
|||
post_presentation_hooks = param.HookList(default= [], instantiList of callable objects to be run after each pattern is presented. |
|||
post_analysis_session_hooks = param.HookList(default= [], instList of callable objects to be run after an analysis session ends. |
|||
name = <param.parameterized.String object at 0xa9c152c>String identifier for this object. |
|||
|
Inherited from |
|||
|
|||
|
Inherited from |
|||
|
|||
__abstractbool(x) -> bool Returns True when the argument x is true, False otherwise. The builtins True and False are the only two instances of the class bool. The class bool is a subclass of the class int, and cannot be subclassed.
|
pre_analysis_session_hooksList of callable objects to be run before an analysis session begins.
|
pre_presentation_hooksList of callable objects to be run before each pattern is presented.
|
post_presentation_hooksList of callable objects to be run after each pattern is presented.
|
post_analysis_session_hooksList of callable objects to be run after an analysis session ends.
|
| Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Thu Aug 5 14:59:31 2010 | http://epydoc.sourceforge.net |