specifies the optimization solver to use.
| Default | LBFGS |
|---|
specifies the LBFGS solver option set.
The lbfgsOptions value can be one or more of the following:
specifies Line-search algorithms used in LBFGS solver.
| Default | MORETHUENTE |
|---|
specifies the number of corrections used in the LBFGS update.
| Default | 20 |
|---|---|
| Minimum value | 1 |
specifies options common to all solvers.
The optmlOptions value can be one or more of the following:
specifies the maximum L2 norm of the weight vector. Weight vectors that have a greater L2 norm are scaled to this value.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies a stopping criterion. The LBFGS solver stops when the objective fails to change more than this value for at least as many iterations as are specified in the fConvWindow parameter.
| Default | 1E-05 |
|---|---|
| Minimum value | 0 |
specifies an iteration window for the LBFGS solver's application of the convergence criterion that is specified in the fConv parameter.
| Default | 1 |
|---|---|
| Minimum value | 1 |
specifies the stopping tolerance for the first-order optimality error.
| Default | 1E-05 |
|---|---|
| Minimum value | 0 |
specifies the maximum number of function evaluations for a single optimization or training.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the maximum iterations for a single optimization or training.
| Default | 10 |
|---|---|
| Minimum value | 0 |
specifies the maximum time (in seconds) for a single optimization or training.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the L1 regularization parameter; the value must be nonnegative.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the L2 regularization parameter; the value must be nonnegative.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies options for sending information to the log and printing the iteration history table.
The optmlPrintOptions value can be one or more of the following:
specifies the output display level.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies how frequently to print the iteration log.
| Default | 1 |
|---|---|
| Minimum value | 1 |
specifies options for the stochastic gradient descent (SGD) solver.
The sgdOptions value can be one or more of the following:
specifies the rate at which the second moment of the gradient is decayed during each SGD iteration.
| Default | 0.95 |
|---|---|
| Range | [0–1) |
when set to True, uses the second moment of the gradient vector to scale the learning rate for SGD.
| Default | FALSE |
|---|
specifies the annealing parameter.
| Default | 1E-06 |
|---|---|
| Minimum value | 0 |
specifies the number of minibatches that each computational thread processes before weights are synchronized across all threads and nodes.
| Minimum value | 0 |
|---|
specifies the learning rate parameter for SGD.
| Default | 0.001 |
|---|---|
| Minimum value (exclusive) | 0 |
specifies the size of the minibatches to use in SGD.
| Default | 1 |
|---|---|
| Minimum value | 1 |
specifies the momentum for SGD.
| Default | 0 |
|---|---|
| Range | [0–1) |
specifies the seed for random access of observations on each thread for the SGD algorithm.
when set to True, uses locks to perform thread aggregation; when set to False, uses an atomic (nondeterministic) operation.
| Default | FALSE |
|---|
specifies the save state option set.
The optmlState value can be one or more of the following:
specifies the frequency of saving iteration state.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies whether to save best solutions.
| Default | TRUE |
|---|
specifies save state table name.
specifies the name of the caslib for the output table.
when set to True, applies data compression to the table.
| Default | FALSE |
|---|
specifies the list of variables to create indexes for in the output data.
specifies the descriptive label to associate with the table.
specifies the number of seconds to keep the table in memory after it is last accessed. The table is dropped if it is not accessed for the specified number of seconds.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the maximum amount of memory, in bytes, that each thread should allocate for in-memory blocks before converting to a memory-mapped file. Files are written in the directories that are specified in the CAS_DISK_CACHE environment variable.
| TIP | You can enclose the value in quotation marks and specify B, K, M, G, or T as a suffix to indicate the units. For example, "8M" specifies eight megabytes. |
|---|
specifies the memory format for the output table.
| Default | INHERIT |
|---|
use the duplicate value reduction memory format. This memory format can reduce the memory consumption and file size when the input data contains duplicate values.
specifies the name for the output table.
This parameter is deprecated.
| Default | TRUE |
|---|
when set to True, adds the output table with a global scope. This enables other sessions to access the table, subject to access controls. The target caslib must also have a global scope.
| Default | FALSE |
|---|
when set to True, overwrites an existing table that has the same name.
| Default | FALSE |
|---|
specifies the number of copies of the table to make for fault tolerance. Larger values result in slower performance and use more memory, but provide high availability for data in the event of a node failure. Data redundancy applies to distributed servers only.
| Default | 1 |
|---|---|
| Minimum value | 0 |
specifies the number of bytes to use for blocks in the output table. The blocks are read by threads. Gradually increase this value when you have a large table with millions or billions of rows and you are tuning for performance. Larger values can increase performance with indexed tables. However, if the value is too large, then you can cause thread starvation due to too few blocks for threads to work on.
| Default | 1048576 |
|---|---|
| Minimum value | 0 |
| TIP | You can enclose the value in quotation marks and specify B, K, M, G, or T as a suffix to indicate the units. For example, "8M" specifies eight megabytes. |
specifies to add a timestamp column to the table. Support for timeStamp is action-specific. Specify the value in the form that is appropriate for your session locale.
specifies one or more expressions for subsetting the output data. When multiple expressions are specified, the expressions are effectively combined using AND to form the final output filter. If an expression contains quoted values, use nested quotation marks.
specifies options for validating models.
The optmlValidate value can be one or more of the following:
specifies how frequently (in epochs) validation occurs.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies a goal for the validation misclassification rate. When the misclassification rate drops below this goal, the optimization stops.
| Default | 0 |
|---|
specifies a number of consecutive validations with increasing misclassification rates that are allowed before optimization terminates early.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the early stopping threshold for validation error. If the validation error is greater than this value at the iteration specified in the thresholdIter parameter, then the optimization stops.
| Default | 1 |
|---|---|
| Minimum value | 0 |
specifies the iteration at which the early stopping threshold (specified in the threshold parameter) is checked.
| Default | 1 |
|---|---|
| Minimum value | 1 |
specifies the optimization solver to use.
| Default | LBFGS |
|---|
specifies the LBFGS solver option set.
The lbfgsOptions value can be one or more of the following:
specifies Line-search algorithms used in LBFGS solver.
| Default | MORETHUENTE |
|---|
specifies the number of corrections used in the LBFGS update.
| Default | 20 |
|---|---|
| Minimum value | 1 |
specifies options common to all solvers.
The optmlOptions value can be one or more of the following:
specifies the maximum L2 norm of the weight vector. Weight vectors that have a greater L2 norm are scaled to this value.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies a stopping criterion. The LBFGS solver stops when the objective fails to change more than this value for at least as many iterations as are specified in the fConvWindow parameter.
| Default | 1E-05 |
|---|---|
| Minimum value | 0 |
specifies an iteration window for the LBFGS solver's application of the convergence criterion that is specified in the fConv parameter.
| Default | 1 |
|---|---|
| Minimum value | 1 |
specifies the stopping tolerance for the first-order optimality error.
| Default | 1E-05 |
|---|---|
| Minimum value | 0 |
specifies the maximum number of function evaluations for a single optimization or training.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the maximum iterations for a single optimization or training.
| Default | 10 |
|---|---|
| Minimum value | 0 |
specifies the maximum time (in seconds) for a single optimization or training.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the L1 regularization parameter; the value must be nonnegative.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the L2 regularization parameter; the value must be nonnegative.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies options for sending information to the log and printing the iteration history table.
The optmlPrintOptions value can be one or more of the following:
specifies the output display level.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies how frequently to print the iteration log.
| Default | 1 |
|---|---|
| Minimum value | 1 |
specifies options for the stochastic gradient descent (SGD) solver.
The sgdOptions value can be one or more of the following:
specifies the rate at which the second moment of the gradient is decayed during each SGD iteration.
| Default | 0.95 |
|---|---|
| Range | [0–1) |
when set to True, uses the second moment of the gradient vector to scale the learning rate for SGD.
| Default | false |
|---|
specifies the annealing parameter.
| Default | 1E-06 |
|---|---|
| Minimum value | 0 |
specifies the number of minibatches that each computational thread processes before weights are synchronized across all threads and nodes.
| Minimum value | 0 |
|---|
specifies the learning rate parameter for SGD.
| Default | 0.001 |
|---|---|
| Minimum value (exclusive) | 0 |
specifies the size of the minibatches to use in SGD.
| Default | 1 |
|---|---|
| Minimum value | 1 |
specifies the momentum for SGD.
| Default | 0 |
|---|---|
| Range | [0–1) |
specifies the seed for random access of observations on each thread for the SGD algorithm.
when set to True, uses locks to perform thread aggregation; when set to False, uses an atomic (nondeterministic) operation.
| Default | false |
|---|
specifies the save state option set.
The optmlState value can be one or more of the following:
specifies the frequency of saving iteration state.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies whether to save best solutions.
| Default | true |
|---|
specifies save state table name.
specifies the name of the caslib for the output table.
when set to True, applies data compression to the table.
| Default | false |
|---|
specifies the list of variables to create indexes for in the output data.
specifies the descriptive label to associate with the table.
specifies the number of seconds to keep the table in memory after it is last accessed. The table is dropped if it is not accessed for the specified number of seconds.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the maximum amount of memory, in bytes, that each thread should allocate for in-memory blocks before converting to a memory-mapped file. Files are written in the directories that are specified in the CAS_DISK_CACHE environment variable.
| TIP | You can enclose the value in quotation marks and specify B, K, M, G, or T as a suffix to indicate the units. For example, "8M" specifies eight megabytes. |
|---|
specifies the memory format for the output table.
| Default | INHERIT |
|---|
use the duplicate value reduction memory format. This memory format can reduce the memory consumption and file size when the input data contains duplicate values.
specifies the name for the output table.
This parameter is deprecated.
| Default | true |
|---|
when set to True, adds the output table with a global scope. This enables other sessions to access the table, subject to access controls. The target caslib must also have a global scope.
| Default | false |
|---|
when set to True, overwrites an existing table that has the same name.
| Default | false |
|---|
specifies the number of copies of the table to make for fault tolerance. Larger values result in slower performance and use more memory, but provide high availability for data in the event of a node failure. Data redundancy applies to distributed servers only.
| Default | 1 |
|---|---|
| Minimum value | 0 |
specifies the number of bytes to use for blocks in the output table. The blocks are read by threads. Gradually increase this value when you have a large table with millions or billions of rows and you are tuning for performance. Larger values can increase performance with indexed tables. However, if the value is too large, then you can cause thread starvation due to too few blocks for threads to work on.
| Default | 1048576 |
|---|---|
| Minimum value | 0 |
| TIP | You can enclose the value in quotation marks and specify B, K, M, G, or T as a suffix to indicate the units. For example, "8M" specifies eight megabytes. |
specifies to add a timestamp column to the table. Support for timeStamp is action-specific. Specify the value in the form that is appropriate for your session locale.
specifies one or more expressions for subsetting the output data. When multiple expressions are specified, the expressions are effectively combined using AND to form the final output filter. If an expression contains quoted values, use nested quotation marks.
specifies options for validating models.
The optmlValidate value can be one or more of the following:
specifies how frequently (in epochs) validation occurs.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies a goal for the validation misclassification rate. When the misclassification rate drops below this goal, the optimization stops.
| Default | 0 |
|---|
specifies a number of consecutive validations with increasing misclassification rates that are allowed before optimization terminates early.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the early stopping threshold for validation error. If the validation error is greater than this value at the iteration specified in the thresholdIter parameter, then the optimization stops.
| Default | 1 |
|---|---|
| Minimum value | 0 |
specifies the iteration at which the early stopping threshold (specified in the threshold parameter) is checked.
| Default | 1 |
|---|---|
| Minimum value | 1 |
specifies the optimization solver to use.
| Default | LBFGS |
|---|
specifies the LBFGS solver option set.
The lbfgsOptions value can be one or more of the following:
specifies Line-search algorithms used in LBFGS solver.
| Default | MORETHUENTE |
|---|
specifies the number of corrections used in the LBFGS update.
| Default | 20 |
|---|---|
| Minimum value | 1 |
specifies options common to all solvers.
The optmlOptions value can be one or more of the following:
specifies the maximum L2 norm of the weight vector. Weight vectors that have a greater L2 norm are scaled to this value.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies a stopping criterion. The LBFGS solver stops when the objective fails to change more than this value for at least as many iterations as are specified in the fConvWindow parameter.
| Default | 1E-05 |
|---|---|
| Minimum value | 0 |
specifies an iteration window for the LBFGS solver's application of the convergence criterion that is specified in the fConv parameter.
| Default | 1 |
|---|---|
| Minimum value | 1 |
specifies the stopping tolerance for the first-order optimality error.
| Default | 1E-05 |
|---|---|
| Minimum value | 0 |
specifies the maximum number of function evaluations for a single optimization or training.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the maximum iterations for a single optimization or training.
| Default | 10 |
|---|---|
| Minimum value | 0 |
specifies the maximum time (in seconds) for a single optimization or training.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the L1 regularization parameter; the value must be nonnegative.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the L2 regularization parameter; the value must be nonnegative.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies options for sending information to the log and printing the iteration history table.
The optmlPrintOptions value can be one or more of the following:
specifies the output display level.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies how frequently to print the iteration log.
| Default | 1 |
|---|---|
| Minimum value | 1 |
specifies options for the stochastic gradient descent (SGD) solver.
The sgdOptions value can be one or more of the following:
specifies the rate at which the second moment of the gradient is decayed during each SGD iteration.
| Default | 0.95 |
|---|---|
| Range | [0–1) |
when set to True, uses the second moment of the gradient vector to scale the learning rate for SGD.
| Default | False |
|---|
specifies the annealing parameter.
| Default | 1E-06 |
|---|---|
| Minimum value | 0 |
specifies the number of minibatches that each computational thread processes before weights are synchronized across all threads and nodes.
| Minimum value | 0 |
|---|
specifies the learning rate parameter for SGD.
| Default | 0.001 |
|---|---|
| Minimum value (exclusive) | 0 |
specifies the size of the minibatches to use in SGD.
| Default | 1 |
|---|---|
| Minimum value | 1 |
specifies the momentum for SGD.
| Default | 0 |
|---|---|
| Range | [0–1) |
specifies the seed for random access of observations on each thread for the SGD algorithm.
when set to True, uses locks to perform thread aggregation; when set to False, uses an atomic (nondeterministic) operation.
| Default | False |
|---|
specifies the save state option set.
The optmlState value can be one or more of the following:
specifies the frequency of saving iteration state.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies whether to save best solutions.
| Default | True |
|---|
specifies save state table name.
specifies the name of the caslib for the output table.
when set to True, applies data compression to the table.
| Default | False |
|---|
specifies the list of variables to create indexes for in the output data.
specifies the descriptive label to associate with the table.
specifies the number of seconds to keep the table in memory after it is last accessed. The table is dropped if it is not accessed for the specified number of seconds.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the maximum amount of memory, in bytes, that each thread should allocate for in-memory blocks before converting to a memory-mapped file. Files are written in the directories that are specified in the CAS_DISK_CACHE environment variable.
| TIP | You can enclose the value in quotation marks and specify B, K, M, G, or T as a suffix to indicate the units. For example, "8M" specifies eight megabytes. |
|---|
specifies the memory format for the output table.
| Default | INHERIT |
|---|
use the duplicate value reduction memory format. This memory format can reduce the memory consumption and file size when the input data contains duplicate values.
specifies the name for the output table.
This parameter is deprecated.
| Default | True |
|---|
when set to True, adds the output table with a global scope. This enables other sessions to access the table, subject to access controls. The target caslib must also have a global scope.
| Default | False |
|---|
when set to True, overwrites an existing table that has the same name.
| Default | False |
|---|
specifies the number of copies of the table to make for fault tolerance. Larger values result in slower performance and use more memory, but provide high availability for data in the event of a node failure. Data redundancy applies to distributed servers only.
| Default | 1 |
|---|---|
| Minimum value | 0 |
specifies the number of bytes to use for blocks in the output table. The blocks are read by threads. Gradually increase this value when you have a large table with millions or billions of rows and you are tuning for performance. Larger values can increase performance with indexed tables. However, if the value is too large, then you can cause thread starvation due to too few blocks for threads to work on.
| Default | 1048576 |
|---|---|
| Minimum value | 0 |
| TIP | You can enclose the value in quotation marks and specify B, K, M, G, or T as a suffix to indicate the units. For example, "8M" specifies eight megabytes. |
specifies to add a timestamp column to the table. Support for timeStamp is action-specific. Specify the value in the form that is appropriate for your session locale.
specifies one or more expressions for subsetting the output data. When multiple expressions are specified, the expressions are effectively combined using AND to form the final output filter. If an expression contains quoted values, use nested quotation marks.
specifies options for validating models.
The optmlValidate value can be one or more of the following:
specifies how frequently (in epochs) validation occurs.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies a goal for the validation misclassification rate. When the misclassification rate drops below this goal, the optimization stops.
| Default | 0 |
|---|
specifies a number of consecutive validations with increasing misclassification rates that are allowed before optimization terminates early.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the early stopping threshold for validation error. If the validation error is greater than this value at the iteration specified in the thresholdIter parameter, then the optimization stops.
| Default | 1 |
|---|---|
| Minimum value | 0 |
specifies the iteration at which the early stopping threshold (specified in the threshold parameter) is checked.
| Default | 1 |
|---|---|
| Minimum value | 1 |
specifies the optimization solver to use.
| Default | LBFGS |
|---|
specifies the LBFGS solver option set.
The lbfgsOptions value can be one or more of the following:
specifies Line-search algorithms used in LBFGS solver.
| Default | MORETHUENTE |
|---|
specifies the number of corrections used in the LBFGS update.
| Default | 20 |
|---|---|
| Minimum value | 1 |
specifies options common to all solvers.
The optmlOptions value can be one or more of the following:
specifies the maximum L2 norm of the weight vector. Weight vectors that have a greater L2 norm are scaled to this value.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies a stopping criterion. The LBFGS solver stops when the objective fails to change more than this value for at least as many iterations as are specified in the fConvWindow parameter.
| Default | 1E-05 |
|---|---|
| Minimum value | 0 |
specifies an iteration window for the LBFGS solver's application of the convergence criterion that is specified in the fConv parameter.
| Default | 1 |
|---|---|
| Minimum value | 1 |
specifies the stopping tolerance for the first-order optimality error.
| Default | 1E-05 |
|---|---|
| Minimum value | 0 |
specifies the maximum number of function evaluations for a single optimization or training.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the maximum iterations for a single optimization or training.
| Default | 10 |
|---|---|
| Minimum value | 0 |
specifies the maximum time (in seconds) for a single optimization or training.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the L1 regularization parameter; the value must be nonnegative.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the L2 regularization parameter; the value must be nonnegative.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies options for sending information to the log and printing the iteration history table.
The optmlPrintOptions value can be one or more of the following:
specifies the output display level.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies how frequently to print the iteration log.
| Default | 1 |
|---|---|
| Minimum value | 1 |
specifies options for the stochastic gradient descent (SGD) solver.
The sgdOptions value can be one or more of the following:
specifies the rate at which the second moment of the gradient is decayed during each SGD iteration.
| Default | 0.95 |
|---|---|
| Range | [0–1) |
when set to True, uses the second moment of the gradient vector to scale the learning rate for SGD.
| Default | FALSE |
|---|
specifies the annealing parameter.
| Default | 1E-06 |
|---|---|
| Minimum value | 0 |
specifies the number of minibatches that each computational thread processes before weights are synchronized across all threads and nodes.
| Minimum value | 0 |
|---|
specifies the learning rate parameter for SGD.
| Default | 0.001 |
|---|---|
| Minimum value (exclusive) | 0 |
specifies the size of the minibatches to use in SGD.
| Default | 1 |
|---|---|
| Minimum value | 1 |
specifies the momentum for SGD.
| Default | 0 |
|---|---|
| Range | [0–1) |
specifies the seed for random access of observations on each thread for the SGD algorithm.
when set to True, uses locks to perform thread aggregation; when set to False, uses an atomic (nondeterministic) operation.
| Default | FALSE |
|---|
specifies the save state option set.
The optmlState value can be one or more of the following:
specifies the frequency of saving iteration state.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies whether to save best solutions.
| Default | TRUE |
|---|
specifies save state table name.
specifies the name of the caslib for the output table.
when set to True, applies data compression to the table.
| Default | FALSE |
|---|
specifies the list of variables to create indexes for in the output data.
specifies the descriptive label to associate with the table.
specifies the number of seconds to keep the table in memory after it is last accessed. The table is dropped if it is not accessed for the specified number of seconds.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the maximum amount of memory, in bytes, that each thread should allocate for in-memory blocks before converting to a memory-mapped file. Files are written in the directories that are specified in the CAS_DISK_CACHE environment variable.
| TIP | You can enclose the value in quotation marks and specify B, K, M, G, or T as a suffix to indicate the units. For example, "8M" specifies eight megabytes. |
|---|
specifies the memory format for the output table.
| Default | INHERIT |
|---|
use the duplicate value reduction memory format. This memory format can reduce the memory consumption and file size when the input data contains duplicate values.
specifies the name for the output table.
This parameter is deprecated.
| Default | TRUE |
|---|
when set to True, adds the output table with a global scope. This enables other sessions to access the table, subject to access controls. The target caslib must also have a global scope.
| Default | FALSE |
|---|
when set to True, overwrites an existing table that has the same name.
| Default | FALSE |
|---|
specifies the number of copies of the table to make for fault tolerance. Larger values result in slower performance and use more memory, but provide high availability for data in the event of a node failure. Data redundancy applies to distributed servers only.
| Default | 1 |
|---|---|
| Minimum value | 0 |
specifies the number of bytes to use for blocks in the output table. The blocks are read by threads. Gradually increase this value when you have a large table with millions or billions of rows and you are tuning for performance. Larger values can increase performance with indexed tables. However, if the value is too large, then you can cause thread starvation due to too few blocks for threads to work on.
| Default | 1048576 |
|---|---|
| Minimum value | 0 |
| TIP | You can enclose the value in quotation marks and specify B, K, M, G, or T as a suffix to indicate the units. For example, "8M" specifies eight megabytes. |
specifies to add a timestamp column to the table. Support for timeStamp is action-specific. Specify the value in the form that is appropriate for your session locale.
specifies one or more expressions for subsetting the output data. When multiple expressions are specified, the expressions are effectively combined using AND to form the final output filter. If an expression contains quoted values, use nested quotation marks.
specifies options for validating models.
The optmlValidate value can be one or more of the following:
specifies how frequently (in epochs) validation occurs.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies a goal for the validation misclassification rate. When the misclassification rate drops below this goal, the optimization stops.
| Default | 0 |
|---|
specifies a number of consecutive validations with increasing misclassification rates that are allowed before optimization terminates early.
| Default | 0 |
|---|---|
| Minimum value | 0 |
specifies the early stopping threshold for validation error. If the validation error is greater than this value at the iteration specified in the thresholdIter parameter, then the optimization stops.
| Default | 1 |
|---|---|
| Minimum value | 0 |
specifies the iteration at which the early stopping threshold (specified in the threshold parameter) is checked.
| Default | 1 |
|---|---|
| Minimum value | 1 |