Class Optimizer
Definition
- Assembly:
- Tizen.MachineLearning.Train.dll
Creates a neural network optimizer.
C#Copypublic class Optimizer : IDisposable
- Inheritance
-
objectOptimizer
- Implements
-
System.IDisposable
Remarks
Use this class to create neural network optimizer. If not set to model, optimizer should be released using Dispose(). If set to a model, optimizer is available until model is released.
Constructors
Declaration
C#Copypublic Optimizer(NNTrainerOptimizerType type)
Parameters
| Type | Name | Description |
|---|---|---|
| NNTrainerOptimizerType | type | The nntrainer optimizer type. |
Remarks
Use this class to create neural network optimizer. If not set to model, optimizer should be released using Dispose(). If set to a model, optimizer is available until model is released.
Exceptions
| Type | Condition |
|---|---|
| System.NotSupportedException | Thrown when the feature is not supported. |
| System.ArgumentException | Thrown when the method failed due to an invalid parameter. |
| System.InvalidOperationException | Thrown when the method failed due to the wrong pipeline description or internal error. |
Methods
Declaration
C#Copypublic void Dispose()
Remarks
Use this class to create neural network optimizer. If not set to model, optimizer should be released using Dispose(). If set to a model, optimizer is available until model is released.
Exceptions
| Type | Condition |
|---|---|
| System.NotSupportedException | Thrown when the feature is not supported. |
| System.ArgumentException | Thrown when the method failed due to an invalid parameter. |
| System.InvalidOperationException | Thrown when the method failed due to the wrong pipeline description or internal error. |
Dispose(bool)
Releases any unmanaged resources used by this object including opened handle.
Declaration
C#Copyprotected virtual void Dispose(bool disposing)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | disposing | If true, disposes any disposable objects. If false, does not dispose disposable objects. |
Remarks
Use this class to create neural network optimizer. If not set to model, optimizer should be released using Dispose(). If set to a model, optimizer is available until model is released.
Exceptions
| Type | Condition |
|---|---|
| System.NotSupportedException | Thrown when the feature is not supported. |
| System.ArgumentException | Thrown when the method failed due to an invalid parameter. |
| System.InvalidOperationException | Thrown when the method failed due to the wrong pipeline description or internal error. |
Declaration
C#Copyprotected ~Optimizer()
Remarks
Use this method to destroy neural network optimizer. Fails if layer is owned by a model.
Exceptions
| Type | Condition |
|---|---|
| System.NotSupportedException | Thrown when the feature is not supported. |
| System.ArgumentException | Thrown when the method failed due to an invalid parameter. |
| System.InvalidOperationException | Thrown when the method failed due to the wrong pipeline description or internal error. |
Declaration
C#Copypublic void SetProperty(params string[] property)
Parameters
| Type | Name | Description |
|---|---|---|
| string[] | property | property for optimizer. |
Remarks
Use this method to set neural network optimizer property. The input format of property must be 'key = value' format.
Exceptions
| Type | Condition |
|---|---|
| System.NotSupportedException | Thrown when the feature is not supported. |
| System.ArgumentException | Thrown when the method failed due to an invalid parameter. |
| System.InvalidOperationException | Thrown when the method failed due to the wrong pipeline description or internal error. |