Skip to Content
Think Bayes ―プログラマのためのベイズ統計入門
book

Think Bayes ―プログラマのためのベイズ統計入門

by Allen B. Downey, 黒川 利明
September 2014
Intermediate to advanced
236 pages
4h 17m
Japanese
O'Reilly Japan, Inc.
Content preview from Think Bayes ―プログラマのためのベイズ統計入門
38
4
もっと推定を
4.4
 最適化
これまで私が示したコードは、読みやすさを優先したものだが、あまり効率的ではな
かった。一般に、私は、見た目でも正しいとわかるコードを開発するようにしている。
その後で、目的のための十分な速度があるかどうか確かめる。十分だったら最適化の
必要はない。この例では、実行時のことを考えれば、速度を上げるいくつかの方法が
ある。
最初に、スイートを正規化する回数を減らすことができる。元々のコードでは、
1
硬貨を回すごとに
Update
を呼び出していた。
dataset = 'H' * heads + 'T' * tails
for data in dataset:
suite.Update(data)
Update
は、次のようになっていた。
def Update(self, data):
for hypo in self.Values():
like = self.Likelih
ood(
data, hypo)
self.Mult(hypo, like)
return self.Normalize()
Update
では、仮説を
1
つずつ処理していて、その後で
Noramalize
を呼び出すのだが、
これは、仮説をまた反復処理する。正規化の前にすべての更新を済ますことで、時間
の節約ができる。
Suite
には、それを行う
UpdateSet
というメソッドがある。
def UpdateSet(self, dataset):
for data in dataset:
for hypo in ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Think Stats 第2版 ―プログラマのための統計入門

Think Stats 第2版 ―プログラマのための統計入門

Allen B. Downey, 黒川 利明, 黒川 洋

Publisher Resources

ISBN: 9784873116945Other