sourcecode/scoring/mf_base_scorer.py [610:648]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        scoredNotes = note_ratings.compute_scored_notes(
          ratings[
            [c.noteIdKey, c.raterParticipantIdKey, c.helpfulnessLevelKey, c.createdAtMillisKey]
            + c.notHelpfulTagsTSVOrder
            + c.helpfulTagsTSVOrder
          ],
          keep_columns(
            noteParamsUnfiltered,
            [
              c.noteIdKey,
              c.internalNoteInterceptKey,
              c.internalNoteFactor1Key,
            ]
            + c.noteParameterUncertaintyTSVColumns,
          ),
          raterParamsUnfiltered[
            [
              c.raterParticipantIdKey,
              c.internalRaterFactor1Key,
            ]
          ],
          noteStatusHistory[
            [
              c.noteIdKey,
              c.createdAtMillisKey,
              c.noteAuthorParticipantIdKey,
              c.classificationKey,
              c.currentLabelKey,
              c.lockedStatusKey,
            ]
          ],
          minRatingsNeeded=self._minRatingsNeeded,
          crhThreshold=self._crhThreshold,
          crnhThresholdIntercept=self._crnhThresholdIntercept,
          crnhThresholdNoteFactorMultiplier=self._crnhThresholdNoteFactorMultiplier,
          crnhThresholdNMIntercept=self._crnhThresholdNMIntercept,
          crnhThresholdUCBIntercept=self._crnhThresholdUCBIntercept,
          crhSuperThreshold=self._crhSuperThreshold,
          inertiaDelta=self._inertiaDelta,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



sourcecode/scoring/mf_base_scorer.py [851:889]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    scoredNotes = note_ratings.compute_scored_notes(
      ratings[
        [c.noteIdKey, c.raterParticipantIdKey, c.helpfulnessLevelKey, c.createdAtMillisKey]
        + c.notHelpfulTagsTSVOrder
        + c.helpfulTagsTSVOrder
      ],
      keep_columns(
        noteParamsUnfiltered,
        [
          c.noteIdKey,
          c.internalNoteInterceptKey,
          c.internalNoteFactor1Key,
        ]
        + c.noteParameterUncertaintyTSVColumns,
      ),
      raterParamsUnfiltered[
        [
          c.raterParticipantIdKey,
          c.internalRaterFactor1Key,
        ]
      ],
      noteStatusHistory[
        [
          c.noteIdKey,
          c.createdAtMillisKey,
          c.noteAuthorParticipantIdKey,
          c.classificationKey,
          c.currentLabelKey,
          c.lockedStatusKey,
        ]
      ],
      minRatingsNeeded=self._minRatingsNeeded,
      crhThreshold=self._crhThreshold,
      crnhThresholdIntercept=self._crnhThresholdIntercept,
      crnhThresholdNoteFactorMultiplier=self._crnhThresholdNoteFactorMultiplier,
      crnhThresholdNMIntercept=self._crnhThresholdNMIntercept,
      crnhThresholdUCBIntercept=self._crnhThresholdUCBIntercept,
      crhSuperThreshold=self._crhSuperThreshold,
      inertiaDelta=self._inertiaDelta,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



