How can I associate values to classes in Keras?
Input:
[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
Expected:
[1, 2, 3], [4, 5, 6] associated with class 1
[7, 8, 9] associated with class 2
The problem is that [1, 2, 3], [4, 5, 6] come from one file and [7, 8, 9] from another. I have read an example with iris.csv but the samples have same size.