Home | Trees | Indices | Help |
|
---|
|
CircularOnlineFlowNode wraps a CircularOnlineFlow of OnlineNodes into a single OnlineNode. This is handy if you want to use a CircularOnlineFlow where an OnlineNode is required. Once the node is initialized, the _flow_iterations and the _ignore_input values of a CircularOnlineFlow cannot be changed. However, the stored_input can be changed (or set) using 'set_stored_input' method. All the read-only container slots are supported and are forwarded to the internal flow.
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from |
|||
Inherited from FlowNode | |||
---|---|---|---|
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from OnlineNode | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Node | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|
|||
|
|
|||
Inherited from |
|||
Inherited from FlowNode | |||
---|---|---|---|
flow Read-only internal flow property. |
|||
Inherited from OnlineNode | |||
_train_seq List of tuples: |
|||
numx_rng Numpy seeded random number generator |
|||
training_type Training type (Read only) |
|||
Inherited from Node | |||
dtype dtype |
|||
input_dim Input dimensions |
|||
output_dim Output dimensions |
|||
supported_dtypes Supported dtypes |
|
Wrap the given flow into this node. Pretrained nodes are allowed, but the internal flow should not be modified after the FlowNode was created (this will cause problems if the training phase structure of the internal nodes changes). If the node dimensions and dtype are not specified, they will be extracted from the internal nodes (late dimension setting is also supported). flow can have crash recovery enabled, but there is no special support for it.
|
|
Return a training sequence containing all training phases. There are three possible train_seqs depending on the values of self._ignore_input and self._flow_iterations. 1) self._ignore_input = False, self._flow_iterations = 1 This is functionally similar to the standard OnlineFlowNode. 2) self._ignore_input = False, self._flow_iterations > 1 For each data point, the OnlineFlowNode trains 1 loop with the data point and 'self._flow_iterations-1' loops with the updating stored input. 3) self._ignore_input = True, self._flow_iterations > 1 Input data is ignored, however, for each data point, the flow trains 'self._flow_iterations' loops with the updating stored input.
|
|
|
Returns the stored input. |
Sets the stored input. |
Sets the training type
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1-MDP on Mon Apr 27 21:56:16 2020 | http://epydoc.sourceforge.net |