refactor: update LabeledSequence to use List<Integer> for sequence instead of int[]

This commit is contained in:
2025-12-05 22:10:44 +01:00
parent 30c54bc99b
commit bf9c4be620

View File

@@ -1,4 +1,6 @@
package de.th_luebeck.ws25; package de.th_luebeck.ws25;
public record LabeledSequence(Label label, int[] trainData) { import java.util.List;
public record LabeledSequence(Label label, List<Integer> sequence) {
} }