Class AlgorithmParametersReader

java.lang.Object
es.uam.eps.ir.relison.grid.ParametersReader
es.uam.eps.ir.relison.grid.links.recommendation.algorithms.AlgorithmParametersReader

public class AlgorithmParametersReader
extends ParametersReader
Class for reading contact recommendation / link prediction algorithms. For each algorithm, it reads a single configuration
File format:
algorithms:
algorithm_name:
param1: ...
See Also:
ParametersReader
  • Field Summary

    Fields 
    Modifier and Type Field Description
    private static java.lang.String ALGORITHMS  
    private java.util.Map<java.lang.String,​Parameters> algorithmsGrid
    Algorithms grid.
  • Constructor Summary

    Constructors 
    Constructor Description
    AlgorithmParametersReader()
    Constructor.
  • Method Summary

    Modifier and Type Method Description
    java.util.Set<java.lang.String> getAlgorithms()
    Gets the set of algorithms previously read.
    Parameters getParameters​(java.lang.String algorithm)
    Gets the grid for a given algorithm
    void read​(java.util.Map<java.lang.String,​java.lang.Object> map)
    Obtains the algorithm grids for different people-to-people recommendation algorithms.
    private void readAlgorithm​(java.util.Map.Entry<java.lang.String,​java.lang.Object> element)
    Reads the grid for a single algorithm.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

  • Method Details

    • read

      public void read​(java.util.Map<java.lang.String,​java.lang.Object> map)
      Obtains the algorithm grids for different people-to-people recommendation algorithms.
      Parameters:
      map - the object containing the grids for the people-to-people recommendation algorithms.
    • readAlgorithm

      private void readAlgorithm​(java.util.Map.Entry<java.lang.String,​java.lang.Object> element)
      Reads the grid for a single algorithm.
      Parameters:
      element - a map containing the information in the YAML file about the algorithm.
    • getAlgorithms

      public java.util.Set<java.lang.String> getAlgorithms()
      Gets the set of algorithms previously read.
      Returns:
      The set of algorithms previously read from the grid file.
    • getParameters

      public Parameters getParameters​(java.lang.String algorithm)
      Gets the grid for a given algorithm
      Parameters:
      algorithm - the algorithm to search
      Returns:
      the grid if exists, an empty grid if not.