| Home | Trees | Indices | Help |
|
|---|
|
|
Inject multiplicative or additive noise into the input data. Original code contributed by Mathias Franzius.
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Inherited from Inherited from Inherited from |
|||
| Inherited from Node | |||
|---|---|---|---|
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Inherited from |
|||
| Inherited from Node | |||
|---|---|---|---|
|
_train_seq List of tuples:: |
|||
|
dtype dtype |
|||
|
input_dim Input dimensions |
|||
|
output_dim Output dimensions |
|||
|
supported_dtypes Supported dtypes |
|||
|
|||
Add noise to input signals.
:Arguments:
noise_func
A function that generates noise. It must
take a ``size`` keyword argument and return
a random array of that size. Default is normal noise.
noise_args
Tuple of additional arguments passed to `noise_func`.
Default is (0,1) for (mean, standard deviation)
of the normal distribution.
noise_type
Either ``'additive'`` or ``'multiplicative'``.
'additive'
returns ``x + noise``.
'multiplicative'
returns ``x * (1 + noise)``
Default is ``'additive'``.
|
|
Return the list of dtypes supported by this node.
|
Process the data contained in `x`. If the object is still in the training phase, the function `stop_training` will be called. `x` is a matrix having different variables on different columns and observations on the rows. By default, subclasses should overwrite `_execute` to implement their execution phase. The docstring of the `_execute` method overwrites this docstring.
|
Return True if the node can be inverted, False otherwise.
|
Return True if the node can be trained, False otherwise.
|
Save a pickled serialization of the node to 'filename'. If 'filename' is None, return a string. Note: the pickled Node is not guaranteed to be upward or backward compatible.
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Thu Mar 10 15:27:43 2016 | http://epydoc.sourceforge.net |