Package ivory.smrf.model.potential

Examples of ivory.smrf.model.potential.PotentialFunction


    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).termCollectionCF();
  }

  public int termCollectionDF() {
    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).termCollectionDF();
  }
View Full Code Here


      throw new RuntimeException("Invalid type " + type);
    }
  }

  public int getDocno() {
    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getDocno();
  }
View Full Code Here

    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getDocno();
  }

  public int getNumberOfPostings() {
    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getNumberOfPostings();
  }
View Full Code Here

    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getNumberOfPostings();
  }

  public int getWindowSize() {
    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getWindowSize();
  }
View Full Code Here

    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getWindowSize();
  }

  public String getScoringFunctionName() { // dirichlet, bm25
    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getScoringFunctionName();
  }
View Full Code Here

    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getScoringFunctionName();
  }

  public ScoringFunction getScoringFunction() {
    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getScoringFunction();
  }
View Full Code Here

TOP

Related Classes of ivory.smrf.model.potential.PotentialFunction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.