How do I correct this Value Error due to Buffer having the wrong dimensions in a quadprog SVM implementation?

328 Views Asked by At

I'm using the quadprog module to set up an SVM for speech recognition. I took a QP implementation from here: https://github.com/stephane-caron/qpsolvers/blob/master/qpsolvers/quadprog_.py

Here is their implementation:

def quadprog_solve_qp(P, q, G=None, h=None, A=None, b=None, initvals=None,
                  verbose=False):

if initvals is not None:
    print("quadprog: note that warm-start values ignored by wrapper")
qp_G = P
qp_a = -q
if A is not None:
    if G is None:
        qp_C = -A.T
        qp_b = -b
    else:
        qp_C = -vstack([A, G]).T

        qp_b = -np.insert(h, 0, 0, axis=0)


    meq = A.shape[0]
else:  # no equality constraint
    qp_C = -G.T if G is not None else None
    qp_b = -h if h is not None else None
    meq = 0
try:
    
    return solve_qp(qp_G, qp_a, qp_C, qp_b, meq)[0]
except ValueError as e:
    if "matrix G is not positive definite" in str(e):
        # quadprog writes G the cost matrix that we write P in this package
        raise ValueError("matrix P is not positive definite")
    raise

Shapes:

P: (127, 127)
h: (254, 1)
q: (127, 1)
A: (1, 127)
G: (254, 127)

I also had that qp_b was initially assigned to an hstack of an array arr = array([0]) with h but the shape: (1,) prevented numpy from concatenating the arrays. I fixed this error by inserting a [0] instead.

When I try quadprog_solve_qp(P, q, G, h, A) I get a:

File "----------------------------.py", line 95, in quadprog_solve_qp
    return solve_qp(qp_G, qp_a, qp_C, qp_b, meq)[0]

  File "quadprog/quadprog.pyx", line 12, in quadprog.solve_qp

ValueError: Buffer has wrong number of dimensions (expected 1, got 2)

And I have no idea where it's coming from, nor what I can do. If anyone has any idea how the quadprog module works or simply what I might be doing wrong I would be pleased to hear.

0

There are 0 best solutions below