Method RegisterCallback
RegisterCallback(string, Action<float>)
Registers a callback action for the provided parameter key. Will overwrite any existing action for that parameter. The callback will be called whenever the parameter receives a value from the training process.
Declaration
public void RegisterCallback(string key, Action<float> action)
Parameters
| Type | Name | Description |
|---|---|---|
| string | key | The parameter key |
| Action<float> | action | The callback action |