feat: add LabeledSequence record to pair Label with trainData

This commit is contained in:
2025-12-05 21:27:51 +01:00
parent bcbfd8b85c
commit 8865e87b9e

View File

@@ -0,0 +1,4 @@
package de.th_luebeck.ws25;
public record LabeledSequence(Label label, int[] trainData) {
}