I want to catch outliers in the 16 x 224 array by using the Elliptic Envelope from sklearn. The problem is that when I predict the array, it gives me different dimension:
ell = EllipticEnvelope()
ell.fit(c)
b = ell.predict(c)
C is 16 x 224 as I said before, and the "b" is size 16 x 1.