IterationResult class Null safety
Constructors
- IterationResult({String? durationMs, double? evalLoss, int? index, double? learnRate, double? trainingLoss})
- IterationResult.fromJson(Map json_)
Properties
- durationMs ↔ String?
-
Time taken to run the iteration in milliseconds.
read / write
- evalLoss ↔ double?
-
Loss computed on the eval data at the end of iteration.
read / write
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- index ↔ int?
-
Index of the iteration, 0 based.
read / write
- learnRate ↔ double?
-
Learn rate used for this iteration.
read / write
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
- trainingLoss ↔ double?
-
Loss computed on the training data at the end of iteration.
read / write
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited