refactor: update LabeledSequence to use List<Integer> for sequence instead of int[]
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
package de.th_luebeck.ws25;
|
||||
|
||||
public record LabeledSequence(Label label, int[] trainData) {
|
||||
import java.util.List;
|
||||
|
||||
public record LabeledSequence(Label label, List<Integer> sequence) {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user