Package smile.datasets
Record Class Protein
java.lang.Object
java.lang.Record
smile.datasets.Protein
public record Protein(BinarySparseSequenceDataset train, BinarySparseSequenceDataset test)
extends Record
Protein sequence dataset.
-
Constructor Summary
ConstructorsConstructorDescriptionProtein()
Constructor.Constructor.Creates an instance of aProtein
record class. -
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.test()
Returns the value of thetest
record component.final String
toString()
Returns a string representation of this record class.train()
Returns the value of thetrain
record component.
-
Constructor Details
-
Protein
Constructor.- Throws:
IOException
- when fails to read the file.
-
Protein
Constructor.- Parameters:
trainDataPath
- the path to training data file.testDataPath
- the path to testing data file.- Throws:
IOException
- when fails to read the file.
-
Protein
Creates an instance of aProtein
record class.- Parameters:
train
- the value for thetrain
record componenttest
- the value for thetest
record component
-
-
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)
. -
train
Returns the value of thetrain
record component.- Returns:
- the value of the
train
record component
-
test
Returns the value of thetest
record component.- Returns:
- the value of the
test
record component
-