|
iCub-main
|
The NullScaler is a scaler that does nothing, the output of the transform function is equal to its input. More...
#include <IScaler.h>
Inheritance diagram for iCub::learningmachine::NullScaler:Public Member Functions | |
| NullScaler () | |
| Constructor. | |
| virtual double | transform (double val) |
| Transforms a single sample value according to the state of the scaler. | |
| virtual double | unTransform (double val) |
| Untransforms a single sample value according to the state of the scaler. | |
| virtual NullScaler * | clone () |
| Asks the scaler to return a new object of its type. | |
Public Member Functions inherited from iCub::learningmachine::IScaler | |
| IScaler (double s=1., double o=0.) | |
| Constructor. | |
| virtual | ~IScaler () |
| Destructor (empty). | |
| virtual void | update (double val) |
| Feeds a single sample into the scaler, so that it can use this sample to update the offset and scale. | |
| virtual std::string | getInfo () |
| Asks the learning machine to return a string containing statistics on its operation so far. | |
| std::string | getName () const |
| Retrieve the name of this scaler. | |
| void | setName (std::string name) |
| Set the name of this machine learning technique. | |
| virtual void | setUpdateEnabled (bool u) |
| Mutator for the update state. | |
| virtual bool | getUpdateEnabled () |
| Accessor for the update state. | |
| virtual std::string | toString () |
| Asks the scaler to return a string serialization. | |
| virtual bool | fromString (const std::string &str) |
| Asks the scaler to initialize from a string serialization. | |
| virtual bool | configure (yarp::os::Searchable &config) |
Additional Inherited Members | |
Protected Member Functions inherited from iCub::learningmachine::IScaler | |
| virtual void | writeBottle (yarp::os::Bottle &bot) |
| Writes a serialization of the scaler into a bottle. | |
| virtual void | readBottle (yarp::os::Bottle &bot) |
| Unserializes a scaler from a bottle. | |
Protected Attributes inherited from iCub::learningmachine::IScaler | |
| double | offset |
| The offset for the linear transformation. | |
| double | scale |
| The scale for the linear transformation. | |
| std::string | name |
| The name of this type of scaler. | |
| bool | updateEnabled |
| Boolean indicating whether the scaler has to update each sample. | |
The NullScaler is a scaler that does nothing, the output of the transform function is equal to its input.
The use is so that the ScaleTransformer can 'disable' transformation on certain inputs.
|
inline |
|
inlinevirtual |
Asks the scaler to return a new object of its type.
Implements iCub::learningmachine::IScaler.
|
inlinevirtual |
Transforms a single sample value according to the state of the scaler.
This state is usually made up out of a desired offset and scale.
| val | the sample |
Reimplemented from iCub::learningmachine::IScaler.
|
inlinevirtual |
Untransforms a single sample value according to the state of the scaler.
This operation is the inverse of the transform operation.
| val | the sample |
Reimplemented from iCub::learningmachine::IScaler.