Variants of Solomonoff induction: Difference between revisions

From Machinelearning
No edit summary
No edit summary
Line 35: Line 35:
| Solomonoff section 3.2, eq. 7<ref name="solomonoff"/> || <math>\sum_{i=1}^\infty 2^{-N(T,i)}</math> where <math>N(T,i)</math> is the <math>i</math>th minimal program for <math>T</math> || Deterministic; universal monotone machine || ||
| Solomonoff section 3.2, eq. 7<ref name="solomonoff"/> || <math>\sum_{i=1}^\infty 2^{-N(T,i)}</math> where <math>N(T,i)</math> is the <math>i</math>th minimal program for <math>T</math> || Deterministic; universal monotone machine || ||
|-
|-
| Solomonoff section 3.3, eq. 9<ref name="solomonoff"/> || <math>N_T/N_R</math>, where <math>N_R</math> is the number of programs of length <math>R</math> that cause the machine to halt eventually, and <math>N_T</math> are the subset of those programs that cause the machine to output something starting with <math>T</math> || Deterministic; either a universal Turing machine or a universal monotone machine || ||
| Solomonoff section 3.3, eq. 9 and 11<ref name="solomonoff"/> || <math>\lim_{R\to\infty} N_T/N_R</math>, where <math>N_R</math> is the number of programs of length <math>R</math> that cause the machine to halt eventually, and <math>N_T</math> are the subset of those programs that cause the machine to output something starting with <math>T</math> || Deterministic; either a universal Turing machine or a universal monotone machine || ||
|-
|-
| Solomonoff section 3.3, eq. 10<ref name="solomonoff"/> || <math>\sum_{n=1}^\infty \sum_{k=1}^{r^n} \sum_{i=1}^\infty ((1-\epsilon)/2)^{N_{(S_{TC_{n,k}})_i}}</math> || Deterministic; || || Solomonoff says this follows from equation 10, but I'm not sure how. In more modern notation, I think this can be written as <math>\sum_{p:U(p)=T*} \left(\frac{1-\epsilon}{2}\right)^{|p|}</math>
| Solomonoff section 3.3, eq. 10<ref name="solomonoff"/> || <math>\sum_{n=1}^\infty \sum_{k=1}^{r^n} \sum_{i=1}^\infty ((1-\epsilon)/2)^{N_{(S_{TC_{n,k}})_i}}</math> || Deterministic; || || Solomonoff says this follows from equation 10, but I'm not sure how. In more modern notation, I think this can be written as <math>\sum_{p:U(p)=T*} \left(\frac{1-\epsilon}{2}\right)^{|p|}</math>

Revision as of 03:40, 1 April 2019

This page lists some variants of Solomonoff induction.

For determinism, I think "deterministic" is the same as "Solomonoff prior" and "stochastic" is the same as "universal mixture". Sterkenburg calls deterministic versions a "bottom-up approach" whereas the universal mixture is a "top-down approach" (p. 30).[1] For deterministic variants, the type of universal machine must be specified. With universal mixtures, one must specify two things: the weighting to use, and the class of distributions to consider.

For discrete vs continuous, I think this just means whether the prior we define is over finite strings or over infinite sequences (where we want to know the probability of an infinite sequence starting with a given finite string). I'm not sure how to tell whether a given formula is discrete or continuous. One difference seems to be that with discrete semimeasures, we only require that the sum is at most 1, whereas with continuous semimeasures we also require that ? (see e.g. p. 5 of [1] and p. 294 of Li and Vitanyi) Apparently one way to think of the discrete version is to think of the sample space as the natural numbers, i.e. one-letter strings from a countably infinite alphabet (see p. 265 of Li and Vitanyi).

Source Formula Determinism Discrete vs continuous Notes
LessWrong Wiki[2] where is the set of self-delimiting programs Deterministic; page doesn't say type of machine, but uses self-delimiting programs and it's discrete, so prefix Turing machine? Discrete because of the rather than ?
Scholarpedia discrete universal a priori probability[3] where the sum is over halting programs deterministic? prefix Turing machine discrete
Scholarpedia continuous universal a priori probability[3] where the sum is over minimal programs deterministic? Monotone Turing machine Continuous
Sterkenburg (p. 22)[1] where is a finite string, is the set of all halting (valid) inputs of length to the reference machine , is the set of all halting (valid) inputs of length that output something starting with deterministic; universal Turing machine (no restrictions on prefix-free-ness) discrete? this seems similar to solomonoff's section 3.3
Sterkenburg (p. 24)[1] where is the shortest program such that (i.e. the shortest program that causes the reference machine to output and halt) deterministic; universal Turing machine, universal prefix machine (to get a probability distribution; see remark on p. 27) discrete? this formula does not define a probability distribution over strings because the sum of probabilities does not converge
Sterkenburg (p. 25)[1] where is the set of all programs of length such that begins with deterministic; universal Turing machine is divergent even for a single , so this is not actually a workable version, but is intended as a stepping stone
Sterkenburg (p. 26)[1] deterministic; universal Turing machine, universal prefix machine (to get a probability distribution; see remark on p. 27) The use of the is a hack to get the sum to converge
Sterkenburg (p. 29)[1] where is the set of minimal descriptions of (i.e. set of programs that output something starting with such that if one removes one bit from the end of the program, it no longer outputs something starting with ) deterministic; universal monotone machine continuous?
Sterkenburg (p. 31)[1] Stochastic; i think this is the same as solomonoff's section 3.4, eq. 13
Sterkenburg (p. 33)[1] Stochastic; weighting unspecified, except for the requirement that for all and that ; the model class is all semicomputable semimeasures
Arbital[4] Stochastic; the weighting is 1/2 to the power of the length of the program; the model class is all programs that define a probability measure (?), where the programs are given using a prefix-free code
Solomonoff section 3.1, eq. 1[5] (this might be incorrect). Solomonoff is using the notation to mean that he doesn't care about what happens as long as the desired string starts the output. In more modern notation we would say or rather than (although note that with Solomonoff's notation, we are also restricting the length of the output, so in the modern notation we would have to also require that ). Deterministic; universal Turing machine Solomonoff originally gave the conditional probability of seeing given we've already seen , which he writes but which in more common notation would be something like .
Solomonoff section 3.2, eq. 7[5] where is the th minimal program for Deterministic; universal monotone machine
Solomonoff section 3.3, eq. 9 and 11[5] , where is the number of programs of length that cause the machine to halt eventually, and are the subset of those programs that cause the machine to output something starting with Deterministic; either a universal Turing machine or a universal monotone machine
Solomonoff section 3.3, eq. 10[5] Deterministic; Solomonoff says this follows from equation 10, but I'm not sure how. In more modern notation, I think this can be written as

References

  1. 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 Tom Florian Sterkenburg. "The Foundations of Solomonoff Prediction". February 2013.
  2. https://wiki.lesswrong.com/wiki/Solomonoff_induction
  3. 3.0 3.1 Marcus Hutter; Shane Legg; Paul M.B. Vitanyi. "Algorithmic probability". Scholarpedia. 2007.
  4. "Solomonoff induction: Intro Dialogue (Math 2)". Arbital.
  5. 5.0 5.1 5.2 5.3 R. J. Solomonoff. "A formal theory of inductive inference. Part I". 1964.