1
0
Fork 0
mirror of https://github.com/fmap/muflax65ngodyewp.onion synced 2024-06-26 10:26:48 +02:00
This commit is contained in:
muflax 2012-05-15 07:59:04 +02:00
parent 43151827e2
commit 3004be0020
2 changed files with 42 additions and 1 deletions

View file

@ -46,7 +46,6 @@
[Swartz Dennett]: http://www.aaronsw.com/weblog/dennettdumb
[Tao]: http://www.beatrice.com/TAO.txt
[Technium]: http://www.kk.org/books/what-technology-wants.php
[The Attention Revolution]: http://www.amazon.com/Attention-Revolution-Unlocking-Power-Focused/dp/0861712765
[Turtles]: http://en.wikipedia.org/wiki/Turtles_all_the_way_down
[Unbreakable]: http://diabasis.com/2011/06/18/could-there-be-beings-that-are-not-wrong-to-make/
[Vipassana]: http://www.dhamma.org
@ -84,6 +83,7 @@
[mother aya]: http://forums.ayahuasca.com/viewtopic.php?p=98187#p98187
[PIT]: http://psychedelic-information-theory.com/
[Szabo Intersubjective]: http://www.fon.hum.uva.nl/rob/Courses/InformationInSpeech/CDROM/Literature/LOTwinterschool2006/szabo.best.vwh.net/tradition.html
[Bayesiann Empiromancy]: http://dresdencodak.com/2009/01/27/advanced-dungeons-and-discourse/
<!-- LessWrong -->
[LW bipolar]: http://lesswrong.com/lw/6nb/ego_syntonic_thoughts_and_values/4igy
@ -172,6 +172,10 @@
[reddit lain]: http://www.reddit.com/r/AskReddit/comments/t0ynr/throwaway_time_whats_your_secret_that_could/c4inqul
[Xmonad Bug]: http://www.reddit.com/r/xmonad/comments/fdp4o/let_focus_follow_mouse_only_on_certain_layouts/
<!-- books -->
[Introduction to Bayesian Statistics]: http://libgen.info/view.php?id=12067
[The Attention Revolution]: http://www.amazon.com/Attention-Revolution-Unlocking-Power-Focused/dp/0861712765
<!-- internal links -->
[main]: http://muflax.com
[blog]: http://blog.muflax.com

37
content_daily/log/45.mkd Normal file
View file

@ -0,0 +1,37 @@
---
title: Title
date: 2012-05-15
techne: :done
episteme: :log
---
Starting reading [Introduction to Bayesian Statistics][], highly recommended. I'm also happy to see that my initial ideas how to run and measure experiments are exactly what the book is talking about. (Yay me?)
So I'm currently doing two things:
1. Hack together a DSL to specify probability mass functions quickly and in intuitive ways, like:
~~~
#!ruby
hypothesis "simple example" do # => define a simple hypothesis
prior :weight => 2 # => 2x as likely as any other hypothesis
range 1..10 # => values range from 1 to 10
add :spike, :at => 7, :height => 3 # => observing "7" has 3x the normal weight
end
~~~
and it just normalizes everything so the total mass adds up to 1, and composes the function based on various additions, overlays and so on (if I had a tablet: just draw it by hand).
That way, I'll have a Ruby script for each problem I'm evaluating, and the script contains a precise (algorithmic) description of the various hypotheses (and classes of hypotheses, yay meta-programming), and I just feed it all the observations I made and it gives me my posterior probabilities. (At a degree of complexity and precision that is suitable for constant quick and dirty measurements, not huge data analysis, of course.)
2. Design a checklist-style protocol how to actually use those techniques, like:
- [ ] select quantifiable variables
- [ ] define hypotheses (algorithmically or as hand-drawn curves)
- [ ] assign priors (based on (intuitively estimated) complexity, uniform distributions over parameters and intuitions[^intuitions])
...and so on. I want this (mostly) pre-determined so I can systematically improve it, and so I don't forget how to do it half-way through.
[^intuitions]: Humans are actually pretty good at picking up frequencies and plausible priors under many normal situations. Azathoth ain't completely incompetent.
At the same time, I'm fixing bugs for work, and trying to not freak out that I'm not studying for exams yet, and how this will become hellish soon enough. But I'm not touching *any* self-improvement or problem-solving work before I have methods how to get reliable answers. I'm not doing blind experimentation anymore. It's time to Do Science, and that needs a new level in [Bayesian Empiromancy][] I gotta grind first.