{
  localUrl: '../page/bayes_log_odds.html',
  arbitalUrl: 'https://arbital.com/p/bayes_log_odds',
  rawJsonUrl: '../raw/1zh.json',
  likeableId: '922',
  likeableType: 'page',
  myLikeValue: '0',
  likeCount: '14',
  dislikeCount: '0',
  likeScore: '14',
  individualLikes: [
    'EricBruylant',
    'RonnyFernandez',
    'IvanTarasov',
    'NateSoares',
    'MalcolmMcCrimmon',
    'freddiestewart',
    'SzymonWilczyski',
    'AndreiAlexandru',
    'SzymonSlawinski',
    'MarkGovea',
    'ElaMadej',
    '7qk',
    'NadeemMohsin',
    'GregvandeKrol'
  ],
  pageId: 'bayes_log_odds',
  edit: '43',
  editSummary: '',
  prevEdit: '39',
  currentEdit: '43',
  wasPublished: 'true',
  type: 'wiki',
  title: 'Bayes' rule: Log-odds form',
  clickbait: 'A simple transformation of Bayes' rule reveals tools for measuring degree of belief, and strength of evidence.',
  textLength: '14241',
  alias: 'bayes_log_odds',
  externalUrl: '',
  sortChildrenBy: 'likes',
  hasVote: 'false',
  voteType: '',
  votesAnonymous: 'false',
  editCreatorId: 'PierreThierry',
  editCreatedAt: '2017-07-10 00:25:14',
  pageCreatorId: 'EliezerYudkowsky',
  pageCreatedAt: '2016-02-13 20:16:06',
  seeDomainId: '0',
  editDomainId: 'AlexeiAndreev',
  submitToDomainId: '0',
  isAutosave: 'false',
  isSnapshot: 'false',
  isLiveEdit: 'true',
  isMinorEdit: 'false',
  indirectTeacher: 'false',
  todoCount: '1',
  isEditorComment: 'false',
  isApprovedComment: 'true',
  isResolved: 'false',
  snapshotText: '',
  anchorContext: '',
  anchorText: '',
  anchorOffset: '0',
  mergedInto: '',
  isDeleted: 'false',
  viewCount: '7475',
  text: '[summary:  [1x5 Bayes's Rule] states that the [1rm prior odds] times the [56t likelihood ratio] equals the [1rp posterior odds].  We can take the logarithms of both sides of the equation to get an equivalent rule which uses addition instead of multiplication.  Letting $H_i$ and $H_j$ denote hypotheses and $e$ denote evidence:\n\n$$\n\\log \\left ( \\dfrac\n   {\\mathbb P(H_i\\mid e)}\n   {\\mathbb P(H_j\\mid e)}\n\\right )\n=\n\\log \\left ( \\dfrac\n   {\\mathbb P(H_i)}\n   {\\mathbb P(H_j)}\n\\right )\n+\n\\log \\left ( \\dfrac\n   {\\mathbb P(e\\mid H_i)}\n   {\\mathbb P(e\\mid H_j)}\n\\right ).\n$$\n\nTo use a real-life example, a study of Chinese blood donors found that roughly 1 in 100,000 of them had HIV (as determined by a very reliable gold-standard test). The non-gold-standard test used for initial screening had a sensitivity of 99.7% and a specificity of 99.8%, meaning that it was 500 times as likely to return positive for infected as non-infected patients.  Then our prior belief is -5 orders of magnitude against HIV, and if we then observe a positive test result, this is evidence of strength +2.7 orders of magnitude for HIV.  Our posterior belief is -2.3 orders of magnitude, or odds of less than 1 to a 100, against HIV.]\n\n[1x5 The odds form] of [1lz Bayes's Rule] states that the [1rm prior] [odds_ratio odds] times the [56t likelihood ratio] equals the [1rp posterior odds]. We can take the log of both sides of this equation, yielding an equivalent equation which uses addition instead of multiplication.\n\nLetting $H_i$ and $H_j$ denote hypotheses and $e$ denote evidence, the log-odds form of Bayes' rule states:\n\n$$\n\\log \\left ( \\dfrac\n   {\\mathbb P(H_i\\mid e)}\n   {\\mathbb P(H_j\\mid e)}\n\\right )\n=\n\\log \\left ( \\dfrac\n   {\\mathbb P(H_i)}\n   {\\mathbb P(H_j)}\n\\right )\n+\n\\log \\left ( \\dfrac\n   {\\mathbb P(e\\mid H_i)}\n   {\\mathbb P(e\\mid H_j)}\n\\right ).\n$$\n\nThis can be numerically efficient for when you're carrying out [1zg lots of updates one after another].  But a more important reason to think in log odds is to get a better grasp on the notion of 'strength of evidence'.\n\n# Logarithms of likelihood ratios\n\nSuppose you're visiting your friends Andrew and Betty, who are a couple. They promised that one of them would pick you up from the airport when you arrive. You're not sure which one is in fact going to pick you up ([1rm prior odds] of 50:50), but you do know three things:\n\n1. They have both a blue car and a red car. Andrew prefers to drive the blue car, Betty prefers to drive the red car, but the correlation is relatively weak. (Sometimes, which car they drive depends on which one their child is using.) Andrew is 2x as likely to drive the blue car as Betty.\n2. Betty tends to honk the horn at you to get your attention. Andrew does this too, but less often. Betty is 4x as likely to honk as Andrew.\n3. Andrew tends to run a little late (more often than Betty). Betty is 2x as likely to have the car already at the airport when you arrive.\n\nAll three observations are independent as far as you know (that is, you don't think Betty's any more or less likely to be late if she's driving the blue car, and so on).\n\nLet's say we see a blue car, already at the airport, which honks.\n\nThe odds form of this calculation would be a $(1 : 1)$ prior for Betty vs. Andrew, times likelihood ratios of $(1 : 2) \\times (4 : 1) \\times (2 : 1),$ yielding posterior odds of $(1 \\times 4 \\times 2 : 2 \\times 1 \\times 1) = (8 : 2) = (4 : 1)$, so it's 4/5 = 80% likely to be Betty.\n\nHere's the log odds form of the same calculation, using 1 **bit** to denote each factor of $2$ in belief or evidence:\n\n- Prior belief in Betty of $\\log_2 (\\frac{1}{1}) = 0$ bits.\n- Evidence of $\\log_2 (\\frac{1}{2}) = {-1}$ bits against Betty.\n- Evidence of $\\log_2 (\\frac{4}{1}) = {+2}$ bits for Betty.\n- Evidence of $\\log_2 (\\frac{2}{1}) = {+1}$ bit for Betty.\n- Posterior belief of $0 + {^-1} + {^+2} + {^+1} = {^+2}$ bits that Betty is picking us up.\n\nIf your posterior belief is +2 bits, then your posterior odds are $(2^{+2} : 1) = (4 : 1),$ yielding a posterior probability of 80% that Betty is picking you up.\n\nEvidence and belief represented this way is *additive,* which can make it an easier fit for intuitions about "strength of credence" and "strength of evidence"; we'll soon develop this point in further depth.\n\n# The log-odds line\n\nImagine you start out thinking that the hypothesis $H$ is just as likely as $\\lnot H,$ its negation. Then you get five separate independent $2 : 1$ updates in favor of $H.$ What happens to your probabilities?\n\nYour odds (for $H$) go from $(1 : 1)$ to $(2 : 1)$ to $(4 : 1)$ to $(8 : 1)$ to $(16 : 1)$ to $(32 : 1).$\n\nThus, your probabilities go from $\\frac{1}{2} = 50\\%$ to $\\frac{2}{3} \\approx 67\\%$ to $\\frac{4}{5} = 80\\%$ to $\\frac{8}{9} \\approx 89\\%$ to $\\frac{16}{17} \\approx 94\\%$ to $\\frac{32}{33} \\approx 97\\%.$\n\nGraphically representing these changing probabilities on a line that goes from 0 to 1:\n\n![0 updates](https://i.imgur.com/pJOVvl1.png)\n![3 updates](https://i.imgur.com/9AxEpQA.png)\n![5 updates](https://i.imgur.com/HHeyAzO.png)\n\nWe observe that the probabilities approach 1 but never get there — they just keep stepping across a fraction of the remaining distance, eventually getting all scrunched up near the right end.\n\nIf we instead convert the probabilities into log-odds, the story is much nicer. 50% probability becomes 0 bits of credence, and every independent $(2 : 1)$ observation in favor of $H$ shifts belief by one unit along the line.\n\n![the log-odds line](https://i.imgur.com/TquetiU.png)\n\n(As for what happens when we approach the end of the line, there isn't one!  0% probability becomes $-\\infty$ bits of credence and 100% probability becomes $+\\infty$ bits of credence.%%%knows-requisite([1r6]):%%note: This un-scrunching of the [-interval] $(0,1)$ into the entire [-real_line] is done by an application of the [inverse_logistic_function inverse logistic] function.%% %%%)\n\n# Intuitions about the log-odds line\n\nThere are a number of ways in which this infinite log-odds line is a better place to anchor your intuitions about "belief" than the usual [0, 1] probability interval. For example:\n\n- Evidence you are twice as likely to see if the hypothesis is true than if it is false is ${+1}$ bits of evidence and a ${^+1}$-bit update, regardless of how confident or unconfident you were to start with--the strength of new evidence, and the distance we update, shouldn't *depend on* our prior belief.\n- If your credence in something is 0 bits--neither positive or negative belief--then you think the odds are 1:1.\n- The distance between $0.01$ and $0.000001$ is much greater than the distance between $0.11$ and $0.100001.$\n\nTo expand on the final point: on the 0-1 probability line, the difference between 0.01 (a 1% chance) and 0.000001 (a 1 in a million chance) is roughly the same as the distance between 11% and 10%.  This doesn't match our sense for the intuitive strength of a claim:  The difference between "1 in 100!" and "1 in a million!" feels like a far bigger jump than the difference between "11% probability" and "a hair over 10% probabiility."\n\nOn the log-odds line, a 1 in 100 credibility is ${^-2}$ orders of magnitude, and a "1 in a million" credibility is ${^-6}$ orders of magnitude.  The distance between them is minus 4 orders of magnitude, that is, $\\log_{10}(10^{-6}) - \\log_{10}(10^{-2})$ yields ${^-4}$ magnitudes, or roughly ${^-13.3}$ bits.  On the other hand, 11% to 10% is $\\log_{10}(\\frac{0.10}{0.90}) - \\log_{10}(\\frac{0.11}{0.89}) \\approx {^-0.954}-{^-0.907} \\approx {^-0.046}$ magnitudes, or ${^-0.153}$ bits.\n\nThe log-odds line doesn't compress the vast differences available near the ends of the probability spectrum. Instead, it exhibits a "belief bar" carrying on indefinitely in both directions--every time you see evidence with a likelihood ratio of $2 : 1,$ it adds one more bit of credibility.\n\nThe [Weber-Fechner law](https://en.wikipedia.org/wiki/Weber%E2%80%93Fechner_law) says that most human sensory perceptions are logarithmic, in the sense that a factor-of-2 intensity change *feels* like around the same amount of increase no matter where you are on the scale.  Doubling the physical intensity of a sound feels to a human like around the same amount of change in that sound whether the initial sound was 40 decibels or 60 decibels.  That's why there's an exponential decibel scale of sound intensities in the first place!\n\nThus the log-odds form should be, in a certain sense, the *most* intuitive variant of Bayes' rule to use: Just add the evidence-strength to the belief-strength!  If you can make your feelings of evidence-strength and belief-strength be proportional to the logarithms of ratios, that is.\n\nFinally, the log-odds representation gives us an even easier way to see how [21v extraordinary claims require extraordinary evidence]: If your prior belief in $H$ is -30 bits, and you see evidence on the order of +5 bits for $H$, then you're going to wind up with -25 bits of belief in $H$, which means you still think it's far less likely than the alternatives.\n\n# Example: Blue oysters\n\nConsider the [54v blue oyster] example problem:\n\nYou're collecting exotic oysters in Nantucket, and there are two different bays from which you could harvest oysters.\n\n- In both bays, 11% of the oysters contain valuable pearls and 89% are empty.\n- In the first bay, 4% of the pearl-containing oysters are blue, and 8% of the non-pearl-containing oysters are blue.\n- In the second bay, 13% of the pearl-containing oysters are blue, and 26% of the non-pearl-containing oysters are blue.\n\nWould you rather have a blue oyster from the first bay or the second bay?  Well, we first note that the likelihood ratio from "blue oyster" to "full vs. empty" is $1 : 2$ in either case, so both kinds of blue oyster are equally valuable.  (Take a moment to reflect on how obvious this would *not* seem before learning about Bayes' rule!)\n\nBut what's the chance of (either kind of) a blue oyster containing a pearl?  Hint: this would be a good time to convert your credences into bits (factors of 2).\n\n%%hidden(Answer):\n89% is around 8 times as much as 11%, so we start out with ${^-3}$ bits of belief that a random oyster contains a pearl.\n\nFull oysters are 1/2 as likely to be blue as empty oysters, so seeing that an oyster is blue is ${^-1}$ bits of evidence against it containing a pearl.\n\nPosterior belief should be around ${^-4}$ bits or $(1 : 16)$ against, or a probability of 1/17... so a bit more than 5% (1/20) maybe?  (Actually 5.88%.)\n%%\n\n# Real-life example: HIV test\n\n[todo: Find & cite the referenced study]\nA study of Chinese blood donors %note: Citation needed% found that roughly 1 in 100,000 of them had HIV (as determined by a very reliable gold-standard test).  The non-gold-standard test used for initial screening had a *sensitivity* of 99.7% and a *specificity* of 99.8%, meaning respectively that $\\mathbb P({positive}\\mid {HIV}) = .997$ and $\\mathbb P({negative}\\mid \\neg {HIV}) = .998$, i.e., $\\mathbb P({positive} \\mid  \\neg {HIV}) = .002.$\n\nThat is: the prior odds are $1 : 100,000$ against HIV, and a positive result in an initial screening favors HIV with a likelihood ratio of $500 : 1.$\n\nUsing log base 10 (because those are [416 easier to do in your head]):\n\n- The prior belief in HIV was about -5 magnitudes.\n- The evidence was a tad less than +3 magnitudes strong, since 500 is less than 1,000.  ($\\log_{10}(500) \\approx 2.7$).\n\nSo the posterior belief in HIV is a tad underneath -2 magnitudes, i.e., less than a 1 in 100 chance of HIV.\n\nEven though the screening had a $500 : 1$ likelihood ratio in favor of HIV, someone with a positive screening result _really_ should not panic!\n\nAdmittedly, this setup had people being screened randomly, in a relatively non-AIDS-stricken country.  You'd need separate statistics for people who are getting tested for HIV because of specific worries or concerns, or in countries where HIV is highly prevalent.  *Nonetheless,* the points that "only a tiny fraction of people have illness X" and that "preliminary observations Y may not have *correspondingly tiny* false positive rates" are worth remembering for many illnesses X and observations Y.\n\n# Exposing infinite credences\n\nThe log-odds representation exposes the degree to which $0$ and $1$ are very unusual among the classical probabilities. For example, [4mq if you ever assign probability absolutely 0 or 1 to a hypothesis, then no amount of evidence can change your mind about it, ever].\n\nOn the log-odds line, credences range from $-\\infty$ to $+\\infty,$ with the infinite extremes corresponding to probability $0$ and $1$ which can thereby be seen as "infinite credences". That's not to say that $0$ and $1$ probabilities should never be used. For an ideal reasoner, the probability $\\mathbb P(X) + \\mathbb P(\\lnot X)$ should be 1 (where $\\lnot X$ is the logical negation of $X$).%note:For us mere mortals, [http://lesswrong.com/lw/jr/how_to_convince_me_that_2_2_3/ consider avoiding extreme probabilities even then].% Nevertheless, these infinite credences of 0 and 1 behave like 'special objects' with a qualitatively different behavior from the ordinary credence spectrum. Statements like "After seeing a piece of strong evidence, my belief should never be exactly what it was previously" are false for extreme credences, just as statements like "subtracting 1 from a number produces a lower number" are false if you insist on regarding %%knows-requisite([1r6]): [aleph_0 $\\aleph_0$] %% %%!knows-requisite([1r6]): infinity %% as a number.\n\n# Evidence in decibels\n\nE.T. Jaynes, in *Probability Theory: The Logic of Science* (section 4.2), reports that using decibels of evidence makes them easier to grasp and use by humans.\n\nIf an hypothesis has a likelihood ratio of $o$, then its evidence in decibels is given by the formula $e = 10\\log_{10}(o)$.\n\nIn this scheme, multiplying the likelihood ratio by 2 means approximately adding 3dB. Multiplying by 10 means adding 10dB.\n\nJayne reports having used decimal logarithm first, for their  ease of calculation and having tried to switch to natural logarithms with the advent of pocket calculators. But decimal logarithms were found to be easier to grasp.\n',
  metaText: '',
  isTextLoaded: 'true',
  isSubscribedToDiscussion: 'false',
  isSubscribedToUser: 'false',
  isSubscribedAsMaintainer: 'false',
  discussionSubscriberCount: '5',
  maintainerCount: '2',
  userSubscriberCount: '0',
  lastVisit: '2016-02-27 20:35:09',
  hasDraft: 'false',
  votes: [],
  voteSummary: [
    '0',
    '0',
    '0',
    '0',
    '0',
    '0',
    '0',
    '0',
    '0',
    '0'
  ],
  muVoteSummary: '0',
  voteScaling: '0',
  currentUserVote: '-2',
  voteCount: '0',
  lockedVoteType: '',
  maxEditEver: '0',
  redLinkCount: '0',
  lockedBy: '',
  lockedUntil: '',
  nextPageId: '',
  prevPageId: '',
  usedAsMastery: 'true',
  proposalEditNum: '0',
  permissions: {
    edit: {
      has: 'false',
      reason: 'You don't have domain permission to edit this page'
    },
    proposeEdit: {
      has: 'true',
      reason: ''
    },
    delete: {
      has: 'false',
      reason: 'You don't have domain permission to delete this page'
    },
    comment: {
      has: 'false',
      reason: 'You can't comment in this domain because you are not a member'
    },
    proposeComment: {
      has: 'true',
      reason: ''
    }
  },
  summaries: {
    Summary: '[1x5 Bayes's Rule] states that the [1rm prior odds] times the [56t likelihood ratio] equals the [1rp posterior odds].  We can take the logarithms of both sides of the equation to get an equivalent rule which uses addition instead of multiplication.  Letting $H_i$ and $H_j$ denote hypotheses and $e$ denote evidence:\n\n$$\n\\log \\left ( \\dfrac\n   {\\mathbb P(H_i\\mid e)}\n   {\\mathbb P(H_j\\mid e)}\n\\right )\n=\n\\log \\left ( \\dfrac\n   {\\mathbb P(H_i)}\n   {\\mathbb P(H_j)}\n\\right )\n+\n\\log \\left ( \\dfrac\n   {\\mathbb P(e\\mid H_i)}\n   {\\mathbb P(e\\mid H_j)}\n\\right ).\n$$\n\nTo use a real-life example, a study of Chinese blood donors found that roughly 1 in 100,000 of them had HIV (as determined by a very reliable gold-standard test). The non-gold-standard test used for initial screening had a sensitivity of 99.7% and a specificity of 99.8%, meaning that it was 500 times as likely to return positive for infected as non-infected patients.  Then our prior belief is -5 orders of magnitude against HIV, and if we then observe a positive test result, this is evidence of strength +2.7 orders of magnitude for HIV.  Our posterior belief is -2.3 orders of magnitude, or odds of less than 1 to a 100, against HIV.'
  },
  creatorIds: [
    'EliezerYudkowsky',
    'NateSoares',
    'EricRogstad',
    'JohnSchmitt',
    'PierreThierry',
    'JoeZeng',
    'AlexeiAndreev',
    'SzymonSlawinski',
    'ViktorGregor',
    'Larsvlisen'
  ],
  childIds: [],
  parentIds: [
    'bayes_rule'
  ],
  commentIds: [
    '25n',
    '3zd',
    '56l',
    '56n',
    '8g9',
    '960',
    '981',
    '982',
    '990',
    '9h9',
    '9hb',
    '9hc',
    '9hd'
  ],
  questionIds: [],
  tagIds: [
    'b_class_meta_tag',
    'proposed_a_class'
  ],
  relatedIds: [],
  markIds: [],
  explanations: [
    {
      id: '2178',
      parentId: 'bayes_log_odds',
      childId: 'bayes_log_odds',
      type: 'subject',
      creatorId: 'AlexeiAndreev',
      createdAt: '2016-06-17 21:58:56',
      level: '2',
      isStrong: 'true',
      everPublished: 'true'
    }
  ],
  learnMore: [
    {
      id: '5810',
      parentId: 'bayes_log_odds',
      childId: 'flee_from_surprise',
      type: 'subject',
      creatorId: 'AlexeiAndreev',
      createdAt: '2016-08-02 00:58:13',
      level: '1',
      isStrong: 'false',
      everPublished: 'true'
    },
    {
      id: '6569',
      parentId: 'bayes_log_odds',
      childId: 'odds_technical',
      type: 'subject',
      creatorId: 'AlexeiAndreev',
      createdAt: '2016-10-11 18:39:25',
      level: '2',
      isStrong: 'false',
      everPublished: 'true'
    }
  ],
  requirements: [
    {
      id: '2173',
      parentId: 'bayes_rule_odds',
      childId: 'bayes_log_odds',
      type: 'requirement',
      creatorId: 'AlexeiAndreev',
      createdAt: '2016-06-17 21:58:56',
      level: '2',
      isStrong: 'true',
      everPublished: 'true'
    },
    {
      id: '5152',
      parentId: 'conditional_probability',
      childId: 'bayes_log_odds',
      type: 'requirement',
      creatorId: 'NateSoares',
      createdAt: '2016-07-10 22:05:56',
      level: '2',
      isStrong: 'true',
      everPublished: 'true'
    },
    {
      id: '5796',
      parentId: 'logarithm',
      childId: 'bayes_log_odds',
      type: 'requirement',
      creatorId: 'AlexeiAndreev',
      createdAt: '2016-08-02 00:32:07',
      level: '2',
      isStrong: 'true',
      everPublished: 'true'
    },
    {
      id: '5797',
      parentId: 'math2',
      childId: 'bayes_log_odds',
      type: 'requirement',
      creatorId: 'AlexeiAndreev',
      createdAt: '2016-08-02 00:32:40',
      level: '3',
      isStrong: 'true',
      everPublished: 'true'
    },
    {
      id: '5800',
      parentId: 'bayes_rule',
      childId: 'bayes_log_odds',
      type: 'requirement',
      creatorId: 'AlexeiAndreev',
      createdAt: '2016-08-02 00:38:36',
      level: '2',
      isStrong: 'true',
      everPublished: 'true'
    }
  ],
  subjects: [
    {
      id: '2178',
      parentId: 'bayes_log_odds',
      childId: 'bayes_log_odds',
      type: 'subject',
      creatorId: 'AlexeiAndreev',
      createdAt: '2016-06-17 21:58:56',
      level: '2',
      isStrong: 'true',
      everPublished: 'true'
    },
    {
      id: '5297',
      parentId: 'bayes_rule',
      childId: 'bayes_log_odds',
      type: 'subject',
      creatorId: 'AlexeiAndreev',
      createdAt: '2016-07-16 16:08:52',
      level: '2',
      isStrong: 'false',
      everPublished: 'true'
    },
    {
      id: '5799',
      parentId: 'bayes_rule_odds',
      childId: 'bayes_log_odds',
      type: 'subject',
      creatorId: 'AlexeiAndreev',
      createdAt: '2016-08-02 00:35:31',
      level: '2',
      isStrong: 'false',
      everPublished: 'true'
    }
  ],
  lenses: [],
  lensParentId: '',
  pathPages: [],
  learnMoreTaughtMap: {
    '1zh': [
      '6cj'
    ]
  },
  learnMoreCoveredMap: {
    '1lz': [
      '1xr',
      '1yc',
      '1zm',
      '220',
      '552',
      '56j',
      '6cj'
    ],
    '1x5': [
      '1zm',
      '555'
    ]
  },
  learnMoreRequiredMap: {
    '1zh': [
      '207',
      '552'
    ]
  },
  editHistory: {},
  domainSubmissions: {},
  answers: [],
  answerCount: '0',
  commentCount: '0',
  newCommentCount: '0',
  linkedMarkCount: '0',
  changeLogs: [
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '22716',
      pageId: 'bayes_log_odds',
      userId: 'PierreThierry',
      edit: '43',
      type: 'newEdit',
      createdAt: '2017-07-10 00:25:14',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '22423',
      pageId: 'bayes_log_odds',
      userId: 'PierreThierry',
      edit: '42',
      type: 'newEditProposal',
      createdAt: '2017-04-04 17:18:57',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '22367',
      pageId: 'bayes_log_odds',
      userId: 'Larsvlisen',
      edit: '41',
      type: 'newEditProposal',
      createdAt: '2017-03-23 16:23:26',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '3625',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '2',
      dislikeCount: '0',
      likeScore: '2',
      individualLikes: [],
      id: '20221',
      pageId: 'bayes_log_odds',
      userId: 'ViktorGregor',
      edit: '39',
      type: 'newEdit',
      createdAt: '2016-10-21 14:42:46',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '20092',
      pageId: 'bayes_log_odds',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'deleteTeacher',
      createdAt: '2016-10-11 18:40:44',
      auxPageId: 'odds',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '20082',
      pageId: 'bayes_log_odds',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'newTeacher',
      createdAt: '2016-10-11 18:39:25',
      auxPageId: 'odds_technical',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '19936',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '37',
      type: 'newEdit',
      createdAt: '2016-10-08 07:36:59',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '19414',
      pageId: 'bayes_log_odds',
      userId: 'SzymonSlawinski',
      edit: '36',
      type: 'newEdit',
      createdAt: '2016-08-30 17:40:46',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '18240',
      pageId: 'bayes_log_odds',
      userId: 'EricBruylant',
      edit: '0',
      type: 'newTag',
      createdAt: '2016-08-03 16:57:19',
      auxPageId: 'proposed_a_class',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '18239',
      pageId: 'bayes_log_odds',
      userId: 'EricBruylant',
      edit: '0',
      type: 'newTag',
      createdAt: '2016-08-03 16:57:07',
      auxPageId: 'b_class_meta_tag',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '18046',
      pageId: 'bayes_log_odds',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'newTeacher',
      createdAt: '2016-08-02 00:58:13',
      auxPageId: 'flee_from_surprise',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '18027',
      pageId: 'bayes_log_odds',
      userId: 'AlexeiAndreev',
      edit: '34',
      type: 'newEdit',
      createdAt: '2016-08-02 00:42:41',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '18026',
      pageId: 'bayes_log_odds',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-08-02 00:38:36',
      auxPageId: 'bayes_rule',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '18024',
      pageId: 'bayes_log_odds',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'newSubject',
      createdAt: '2016-08-02 00:35:32',
      auxPageId: 'bayes_rule_odds',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '18020',
      pageId: 'bayes_log_odds',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'deleteRequirement',
      createdAt: '2016-08-02 00:32:48',
      auxPageId: 'math1',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '18018',
      pageId: 'bayes_log_odds',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-08-02 00:32:41',
      auxPageId: 'math2',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '18014',
      pageId: 'bayes_log_odds',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-08-02 00:32:08',
      auxPageId: 'logarithm',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '17931',
      pageId: 'bayes_log_odds',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'newTeacher',
      createdAt: '2016-08-01 23:09:14',
      auxPageId: 'odds',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '3155',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '2',
      dislikeCount: '0',
      likeScore: '2',
      individualLikes: [],
      id: '17249',
      pageId: 'bayes_log_odds',
      userId: 'JohnSchmitt',
      edit: '33',
      type: 'newEdit',
      createdAt: '2016-07-21 19:47:59',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '3156',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '2',
      dislikeCount: '0',
      likeScore: '2',
      individualLikes: [],
      id: '17246',
      pageId: 'bayes_log_odds',
      userId: 'JohnSchmitt',
      edit: '32',
      type: 'newEdit',
      createdAt: '2016-07-21 19:02:31',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '16853',
      pageId: 'bayes_log_odds',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'newSubject',
      createdAt: '2016-07-16 16:08:53',
      auxPageId: 'bayes_rule',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '16505',
      pageId: 'bayes_log_odds',
      userId: 'NateSoares',
      edit: '31',
      type: 'newEdit',
      createdAt: '2016-07-10 22:13:45',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '16481',
      pageId: 'bayes_log_odds',
      userId: 'NateSoares',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-07-10 22:05:57',
      auxPageId: 'conditional_probability',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '16480',
      pageId: 'bayes_log_odds',
      userId: 'NateSoares',
      edit: '0',
      type: 'deleteRequirement',
      createdAt: '2016-07-10 22:05:49',
      auxPageId: 'bayes_probability_notation',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '16288',
      pageId: 'bayes_log_odds',
      userId: 'EricRogstad',
      edit: '30',
      type: 'newEdit',
      createdAt: '2016-07-09 01:46:08',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: 'title capitalization (see: https://arbital.com/p/Arbital_style_guide/)'
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '16225',
      pageId: 'bayes_log_odds',
      userId: 'NateSoares',
      edit: '29',
      type: 'newEdit',
      createdAt: '2016-07-08 15:55:14',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '15902',
      pageId: 'bayes_log_odds',
      userId: 'EricRogstad',
      edit: '28',
      type: 'newEdit',
      createdAt: '2016-07-07 02:20:35',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '15901',
      pageId: 'bayes_log_odds',
      userId: 'EricRogstad',
      edit: '27',
      type: 'newEdit',
      createdAt: '2016-07-07 02:19:26',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '15724',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '26',
      type: 'newEdit',
      createdAt: '2016-07-06 17:56:34',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '15657',
      pageId: 'bayes_log_odds',
      userId: 'NateSoares',
      edit: '25',
      type: 'newEdit',
      createdAt: '2016-07-06 14:05:26',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: 'Hid the logistic function mention behind a math2 req and a note bubble (on grounds of "the reader is already being hit with enough new ideas at once")'
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '15654',
      pageId: 'bayes_log_odds',
      userId: 'JoeZeng',
      edit: '24',
      type: 'newEdit',
      createdAt: '2016-07-06 13:52:24',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: 'Added a mention of the logistic function.'
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '15583',
      pageId: 'bayes_log_odds',
      userId: 'NateSoares',
      edit: '23',
      type: 'newEdit',
      createdAt: '2016-07-06 06:16:42',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '15582',
      pageId: 'bayes_log_odds',
      userId: 'NateSoares',
      edit: '0',
      type: 'deleteRequirement',
      createdAt: '2016-07-06 06:16:17',
      auxPageId: 'diseasitis',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '15576',
      pageId: 'bayes_log_odds',
      userId: 'NateSoares',
      edit: '22',
      type: 'newEdit',
      createdAt: '2016-07-06 06:11:53',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '14024',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '21',
      type: 'newEdit',
      createdAt: '2016-06-19 23:14:09',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '14023',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '20',
      type: 'newEdit',
      createdAt: '2016-06-19 23:13:10',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '14022',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '19',
      type: 'newEdit',
      createdAt: '2016-06-19 23:12:04',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '8118',
      pageId: 'bayes_log_odds',
      userId: 'NateSoares',
      edit: '16',
      type: 'newEdit',
      createdAt: '2016-03-03 04:43:45',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '8115',
      pageId: 'bayes_log_odds',
      userId: 'NateSoares',
      edit: '15',
      type: 'newEdit',
      createdAt: '2016-03-03 04:24:07',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7580',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '14',
      type: 'newRequirement',
      createdAt: '2016-02-22 21:17:38',
      auxPageId: 'diseasitis',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7054',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '14',
      type: 'newEdit',
      createdAt: '2016-02-13 21:01:22',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7045',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '13',
      type: 'newEdit',
      createdAt: '2016-02-13 20:59:21',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7044',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '12',
      type: 'newEdit',
      createdAt: '2016-02-13 20:56:26',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7026',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '11',
      type: 'newEdit',
      createdAt: '2016-02-13 20:47:24',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7025',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '10',
      type: 'newEdit',
      createdAt: '2016-02-13 20:45:41',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7024',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '9',
      type: 'newEdit',
      createdAt: '2016-02-13 20:43:56',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7023',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '8',
      type: 'newEdit',
      createdAt: '2016-02-13 20:43:28',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7022',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '7',
      type: 'newRequirement',
      createdAt: '2016-02-13 20:42:37',
      auxPageId: 'math1',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7020',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '0',
      type: 'deleteRequirement',
      createdAt: '2016-02-13 20:42:33',
      auxPageId: 'math2',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7018',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '7',
      type: 'newEdit',
      createdAt: '2016-02-13 20:41:56',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7017',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '6',
      type: 'newEdit',
      createdAt: '2016-02-13 20:34:57',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7015',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '5',
      type: 'newTeacher',
      createdAt: '2016-02-13 20:34:06',
      auxPageId: 'bayes_log_odds',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7016',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '5',
      type: 'newSubject',
      createdAt: '2016-02-13 20:34:06',
      auxPageId: 'bayes_log_odds',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7014',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '5',
      type: 'newEdit',
      createdAt: '2016-02-13 20:33:03',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7013',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '4',
      type: 'newEdit',
      createdAt: '2016-02-13 20:32:14',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7012',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '3',
      type: 'newEdit',
      createdAt: '2016-02-13 20:31:36',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7011',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '2',
      type: 'newEdit',
      createdAt: '2016-02-13 20:18:41',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7010',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '1',
      type: 'newEdit',
      createdAt: '2016-02-13 20:16:06',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7009',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-02-13 20:04:00',
      auxPageId: 'math2',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7007',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-02-13 20:03:56',
      auxPageId: 'bayes_probability_notation',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7005',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '0',
      type: 'deleteRequirement',
      createdAt: '2016-02-13 20:03:51',
      auxPageId: 'math1',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7003',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '0',
      type: 'deleteRequirement',
      createdAt: '2016-02-13 20:03:05',
      auxPageId: 'bayes_probability_notation',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '7001',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-02-13 20:02:19',
      auxPageId: 'math1',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '6999',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-02-13 20:01:59',
      auxPageId: 'bayes_probability_notation',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '6997',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-02-13 20:01:39',
      auxPageId: 'bayes_rule_odds',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '6995',
      pageId: 'bayes_log_odds',
      userId: 'EliezerYudkowsky',
      edit: '0',
      type: 'newParent',
      createdAt: '2016-02-13 20:00:00',
      auxPageId: 'bayes_rule',
      oldSettingsValue: '',
      newSettingsValue: ''
    }
  ],
  feedSubmissions: [],
  searchStrings: {},
  hasChildren: 'false',
  hasParents: 'true',
  redAliases: {},
  improvementTagIds: [],
  nonMetaTagIds: [],
  todos: [],
  slowDownMap: 'null',
  speedUpMap: 'null',
  arcPageIds: 'null',
  contentRequests: {
    lessTechnical: {
      likeableId: '3357',
      likeableType: 'contentRequest',
      myLikeValue: '0',
      likeCount: '3',
      dislikeCount: '0',
      likeScore: '3',
      individualLikes: [],
      id: '38',
      pageId: 'bayes_log_odds',
      requestType: 'lessTechnical',
      createdAt: '2016-08-06 21:13:36'
    },
    moreWords: {
      likeableId: '3964',
      likeableType: 'contentRequest',
      myLikeValue: '0',
      likeCount: '3',
      dislikeCount: '0',
      likeScore: '3',
      individualLikes: [],
      id: '170',
      pageId: 'bayes_log_odds',
      requestType: 'moreWords',
      createdAt: '2017-02-02 02:52:01'
    }
  }
}