Package smile.validation
Record Class Bag
java.lang.Object
java.lang.Record
smile.validation.Bag
- Record Components:
samples
- the random samples.oob
- the out of bag samples.
- All Implemented Interfaces:
Serializable
A bag of random selected samples.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int[]
oob()
Returns the value of theoob
record component.int[]
samples()
Returns the value of thesamples
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
samples
public int[] samples()Returns the value of thesamples
record component.- Returns:
- the value of the
samples
record component
-
oob
public int[] oob()Returns the value of theoob
record component.- Returns:
- the value of the
oob
record component
-