http://code.google.com/p/python-hidden-markov/source/browse/trunk/Markov.py
Contains a class HMM
, which inherits from BayesianModel
, which is a new-style class. Each has a __call__
method. HMM
's __call__
method is meant to invoke BayesianModel's at line 227:
return super(HMM,self)(PriorProbs)
However, this fails with an exception
super(HMM,self)
is not callable.
What am I doing wrong?