Package smile.datasets
Record Class ImageSegmentation
java.lang.Object
java.lang.Record
smile.datasets.ImageSegmentation
- Record Components:
train
- training data frame.test
- testing data frame.formula
- modeling formula.
Image segmentation dataset. The instances were drawn randomly from
a database of 7 outdoor images. The images were hand segmented
to create a classification for every pixel.
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.ImageSegmentation
(Path trainDataPath, Path testDataPath) Constructor.ImageSegmentation
(DataFrame train, DataFrame test, Formula formula) Creates an instance of aImageSegmentation
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.formula()
Returns the value of theformula
record component.final int
hashCode()
Returns a hash code value for this object.test()
Returns the value of thetest
record component.double[][]
testx()
Returns the test sample features.int[]
testy()
Returns the test sample class labels.final String
toString()
Returns a string representation of this record class.train()
Returns the value of thetrain
record component.double[][]
x()
Returns the train sample features.int[]
y()
Returns the train sample class labels.
-
Constructor Details
-
ImageSegmentation
Constructor.- Throws:
IOException
- when fails to read the file.ParseException
- when fails to parse the file.
-
ImageSegmentation
Constructor.- Parameters:
trainDataPath
- the path to training data file.testDataPath
- the path to testing data file.- Throws:
IOException
- when fails to read the file.ParseException
- when fails to parse the file.
-
ImageSegmentation
Creates an instance of aImageSegmentation
record class.
-
-
Method Details
-
x
public double[][] x()Returns the train sample features.- Returns:
- the train sample features.
-
y
public int[] y()Returns the train sample class labels.- Returns:
- the train sample class labels.
-
testx
public double[][] testx()Returns the test sample features.- Returns:
- the test sample features.
-
testy
public int[] testy()Returns the test sample class labels.- Returns:
- the test sample class labels.
-
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
-
formula
Returns the value of theformula
record component.- Returns:
- the value of the
formula
record component
-