I have two groups of vectors A = [[0 0 0 0 1], [0 0 0 1 0], …] and B = [[0 0 1 0 1], [0 1 0 0 1], …]. I want to find the pattern that differentiates the vectors in A from the vectors in B. How to do that? Example output:
- if both the 2nd and 3rd term and/or the 4th and 5th term are both equal to 0, then the vector belongs to group A
- the first term doesn’t tell anything about whether the vector belongs to group A or B
- ecc..