Tabnine Logo
Similarity$SimWeight.getValueForNormalization
Code IndexAdd Tabnine to your IDE (free)

How to use
getValueForNormalization
method
in
org.apache.lucene.search.similarities.Similarity$SimWeight

Best Java code snippets using org.apache.lucene.search.similarities.Similarity$SimWeight.getValueForNormalization (Showing top 20 results out of 315)

origin: sirensolutions/siren

@Override
public float getValueForNormalization() throws IOException {
 return stats.getValueForNormalization();
}
origin: harbby/presto-connectors

@Override
public float getValueForNormalization() throws IOException {
 return simWeight == null ? 1.0f : simWeight.getValueForNormalization();
}
origin: harbby/presto-connectors

@Override
public float getValueForNormalization() {
 return stats.getValueForNormalization();
}
origin: cheng-li/pyramid

@Override
public float getValueForNormalization() throws IOException {
 return simWeight == null ? 1.0f : simWeight.getValueForNormalization();
}
origin: harbby/presto-connectors

@Override
public float getValueForNormalization() {
 return stats.getValueForNormalization();
}
origin: harbby/presto-connectors

@Override
public float getValueForNormalization() {
 return stats.getValueForNormalization();
}
origin: sirensolutions/siren

@Override
public float getValueForNormalization() {
 return stats.getValueForNormalization();
}
origin: sirensolutions/siren

@Override
public float getValueForNormalization() throws IOException {
 return stats.getValueForNormalization();
}
origin: org.codelibs/elasticsearch-querybuilders

@Override
public float getValueForNormalization() throws IOException {
  return stats.getValueForNormalization();
}
origin: org.infinispan/infinispan-embedded-query

@Override
public float getValueForNormalization() {
 return stats.getValueForNormalization();
}
origin: harbby/presto-connectors

@Override
public float getValueForNormalization() {
 return stats.getValueForNormalization();
}
origin: rdelbru/SIREn

@Override
public float getValueForNormalization() throws IOException {
 return stats.getValueForNormalization();
}
origin: org.infinispan/infinispan-embedded-query

@Override
public float getValueForNormalization() {
 return stats.getValueForNormalization();
}
origin: org.infinispan/infinispan-embedded-query

@Override
public float getValueForNormalization() {
 return stats.getValueForNormalization();
}
origin: com.strapdata.elasticsearch/elasticsearch

@Override
public float getValueForNormalization() throws IOException {
  return stats.getValueForNormalization();
}
origin: org.infinispan/infinispan-embedded-query

@Override
public float getValueForNormalization() throws IOException {
 return simWeight == null ? 1.0f : simWeight.getValueForNormalization();
}
origin: harbby/presto-connectors

@Override
public float getValueForNormalization() {
 float sum = 0.0f;
 for (SimWeight stat : subStats) {
  sum += stat.getValueForNormalization();
 }
 return sum / subStats.length;
}
origin: rdelbru/SIREn

@Override
public float getValueForNormalization() {
 return stats.getValueForNormalization();
}
origin: org.infinispan/infinispan-embedded-query

@Override
public float getValueForNormalization() {
 float sum = 0.0f;
 for (SimWeight stat : subStats) {
  sum += stat.getValueForNormalization();
 }
 return sum / subStats.length;
}
origin: org.infinispan/infinispan-embedded-query

@Override
public float getValueForNormalization() {
 return delegateWeight.getValueForNormalization();
}

org.apache.lucene.search.similaritiesSimilarity$SimWeightgetValueForNormalization

Javadoc

The value for normalization of contained query clauses (e.g. sum of squared weights).

NOTE: a Similarity implementation might not use any query normalization at all, it's not required. However, if it wants to participate in query normalization, it can return a value here.

Popular methods of Similarity$SimWeight

  • normalize
    Assigns the query normalization factor and boost from parent queries to this. NOTE: a Similarity im

Popular in Java

  • Making http post requests using okhttp
  • getResourceAsStream (ClassLoader)
  • addToBackStack (FragmentTransaction)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now