scalation.modeling.neuralnet.StoppingRule
The StoppingRule
trait provides stopping rules to terminating the iterative steps in an optimization early.
Attributes
-
Graph
-
-
Supertypes
-
class Object
trait Matchable
class Any
-
Known subtypes
-
Members list
Stop when too many steps have the cost measure (e.g., sse) increasing. Signal a stopping condition by returning the best parameter vector, else null.
Stop when too many steps have the cost measure (e.g., sse) increasing. Signal a stopping condition by returning the best parameter vector, else null.
Value parameters
-
b
-
the current value of the parameter vector
-
sse
-
the current value of cost measure (e.g., sum of squared errors)
Attributes
Stop when too many steps have the cost measure (e.g., sse) increasing. Signal a stopping condition by returning the best parameter vector, else null.
Stop when too many steps have the cost measure (e.g., sse) increasing. Signal a stopping condition by returning the best parameter vector, else null.
Value parameters
-
b
-
the current parameter value (weights and biases)
-
sse
-
the current value of cost measure (e.g., sum of squared errors)
Attributes