java.lang.Object
es.uam.eps.ir.relison.links.recommendation.reranking.normalizer.StatsBasedNormalizer<I>
es.uam.eps.ir.relison.links.recommendation.reranking.normalizer.MinMaxNormalizer<I>
Type Parameters:
I - type of the items
All Implemented Interfaces:
Normalizer<I>

public class MinMaxNormalizer<I>
extends StatsBasedNormalizer<I>
Min-max normalizer.
  • Field Summary

    Fields inherited from class es.uam.eps.ir.relison.links.recommendation.reranking.normalizer.StatsBasedNormalizer

    stats
  • Constructor Summary

    Constructors 
    Constructor Description
    MinMaxNormalizer()  
  • Method Summary

    Modifier and Type Method Description
    double norm​(I i, double value)
    Given an item-value pair, it computes the normalized value.

    Methods inherited from class es.uam.eps.ir.relison.links.recommendation.reranking.normalizer.StatsBasedNormalizer

    add

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface es.uam.eps.ir.relison.links.recommendation.reranking.normalizer.Normalizer

    add, norm
  • Constructor Details

  • Method Details

    • norm

      public double norm​(I i, double value)
      Description copied from interface: Normalizer
      Given an item-value pair, it computes the normalized value.
      Parameters:
      i - the item identifier.
      value - the value.
      Returns:
      the normalized value.