SyntaxError: positional argument follows keyword argument

55.7k views Asked by At

I have a python 3 function which is defined like below:

def hidden_markov_model(distribution, K=3, N=100, *args):

when i call the function, i get this error:

Q_hmm = hidden_markov_model(Gaussian, K=K, N=N, 
                            mu, K*[std**(-2)*np.identity(2)],
                            )

SyntaxError: positional argument follows keyword argument

what is wrong?

1

There are 1 answers

0
Atena On

Understand. I should call it like this:

 Q_hmm = hidden_markov_model(Gaussian, K, N, 
                            mu, K*[std**(-2)*np.identity(2)],
                            )