Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #101908
| From | Peter Otten <__peter__@web.de> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: Is this an attribute? |
| Date | 2016-01-19 21:51 +0100 |
| Organization | None |
| Message-ID | <mailman.113.1453236703.15297.python-list@python.org> (permalink) |
| References | <5e847125-7fce-49ce-96ab-25e6f3b5511b@googlegroups.com> |
Robert wrote:
> Hi,
>
> When I read a code snippet below, I find I don't know what
> 'self.framelogprob' is on the child class.
>
>
>
> ////// parent class
> class _BaseHMM(BaseEstimator):
> def __init__(self, n_components=1,
> startprob_prior=1.0, transmat_prior=1.0,
> algorithm="viterbi", random_state=None,
> n_iter=10, tol=1e-2, verbose=False,
> params=string.ascii_letters,
> init_params=string.ascii_letters):
> self.n_components = n_components
> ......
>
> def score_samples(self, X, lengths=None):
> X = check_array(X)
> n_samples = X.shape[0]
> logprob = 0
> posteriors = np.zeros((n_samples, self.n_components))
> for i, j in iter_from_X_lengths(X, lengths):
> framelogprob = self._compute_log_likelihood(X[i:j])
> .......
> return logprob, posteriors
>
> ////// child class
> class StubHMM(_BaseHMM):
> def _compute_log_likelihood(self, X):
> return self.framelogprob
> -------------
>
> On Python web, it says that things after dot, such as a class name, are
> attributes. From this definition, 'framelogprob' is an attribute. But when
> I run the command on Canopy:
>
> h.framelogprob
>
---------------------------------------------------------------------------
> AttributeError Traceback (most recent call
> last) <ipython-input-19-970ee2f3402c> in <module>()
> ----> 1 h.framelogprob
>
> AttributeError: 'StubHMM' object has no attribute 'framelogprob'
>
>
> it doesn't recognize it as an attribute. What is wrong with my
> understanding?
When you are reading a book, do you expect to be able to understand every
arbitrarily picked sentence without any idea about the surrounding text?
Widen your view a bit -- the StubHMM class is in a file test_base.py and
therefore it is likely that it is supposed to help with testing rather than
to be used standalone. When you read the complete module to understand more
of the context or just use a tool like grep you'll find the following
snippets:
h = StubHMM(2)
h.transmat_ = [[0.7, 0.3], [0.3, 0.7]]
h.startprob_ = [0.5, 0.5]
h.framelogprob = self.framelogprob
h = StubHMM(n_components)
h.framelogprob = self.framelogprob
So the attribute is set "from the outside". I wouldn't do that, I'd rather
add initializer arguments, but that wasn't the question...
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Is this an attribute? Robert <rxjwg98@gmail.com> - 2016-01-19 12:19 -0800
Re: Is this an attribute? Peter Otten <__peter__@web.de> - 2016-01-19 21:51 +0100
Re: Is this an attribute? Robert <rxjwg98@gmail.com> - 2016-01-19 13:27 -0800
Re: Is this an attribute? Robert <rxjwg98@gmail.com> - 2016-01-19 13:49 -0800
Re: Is this an attribute? Steven D'Aprano <steve@pearwood.info> - 2016-01-20 11:03 +1100
csiph-web