| clear query|facets|time |
Search criteria: SimilarityProvider .
Results from 151 to 160 from
10056 (0.234s).
|
|
|
Loading phrases to help you refine your search...
|
|
LMJelinekMercerSimilarityFactory # getSimilarity() - Solr - [javadoc]
- [see source code]
|
|
|
|
http://search-lucene.com/jd/so...ekMercerSimilarityFactory.html#getSimilarity()
|
|
|
BM25SimilarityFactory # getSimilarity() - Solr - [javadoc]
- [see source code]
|
|
|
|
http://search-lucene.com/jd/solr/.../BM25SimilarityFactory.html#getSimilarity()
|
|
|
Multiple Similarity - Solr - [mail # user]
|
|
... Hi, Is it possible to define different Similarity classes for different fields? We have a use case where we are interested in avoid term frequency (tf) when our fields are multi...
|
|
...Valued. Regards, Raimon Bosch. View this message in context: http://lucene.472066.n3.nabble.com/Multiple-Similarity-tp1740290p1740290.html Sent from the Solr - User mailing list archive at Nabble.com. ...
|
|
|
Author: raimon.bosch,
2010-10-20, 17:29
|
|
|
SchemaSimilarityFactory.java - Solr - [source code]
|
|
...package org.apache.solr.search.similarities;
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed...
|
|
... permissions and
* limitations under the License.
*/
import org.apache.lucene.search.similarities.DefaultSimilarity;
import org.apache.lucene.search.similarities.PerFieldSimilarityWrapper;
import...
|
[+ show more]
[- hide]
| ... org.apache.lucene.search.similarities.Similarity;
import org.apache.solr.schema.FieldType;
import org.apache.solr.schema.IndexSchema;
import org.apache.solr.schema.SchemaAware;
import org.apache.solr.schema.Similarity... |
| ...Factory;
/**
* SimilarityFactory that returns a {@link PerFieldSimilarityWrapper}
* that delegates to the field type, if its configured, otherwise
* {@link DefaultSimilarity}.
*
*
* NOTE: Users should... |
| ... be aware that in addition to supporting
* Similarity configurations specified on individual
* field types, this factory also differs in behavior from
* {@link DefaultSimilarity... |
|
|
|
|
|
DefaultSimilarityFactory.java - Solr - [source code]
|
|
...package org.apache.solr.search.similarities;
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed...
|
|
... permissions and
* limitations under the License.
*/
import org.apache.lucene.search.similarities.DefaultSimilarity;
import org.apache.lucene.search.similarities.Similarity;
import org.apache.lucene.search.similarities...
|
[+ show more]
[- hide]
| ....TFIDFSimilarity; // javadoc
import org.apache.solr.common.params.SolrParams;
import org.apache.solr.schema.SimilarityFactory;
/**
* Factory for {@link DefaultSimilarity}
*
* DefaultSimilarity is Lucene's default... |
| ... scoring implementation, based
* upon the Vector Space Model.
*
* Optional settings:
*
* discountOverlaps (bool): Sets
* {@link DefaultSimilarity... |
| ...#setDiscountOverlaps(boolean)}
*
* @see TFIDFSimilarity
* @lucene.experimental
*/
public class DefaultSimilarityFactory extends SimilarityFactory {
private boolean discountOverlaps;
@Override
public void init... |
|
|
|
|
|
LMDirichletSimilarityFactory.java - Solr - [source code]
|
|
...package org.apache.solr.search.similarities;
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed...
|
|
... permissions and
* limitations under the License.
*/
import org.apache.lucene.search.similarities.LMDirichletSimilarity;
import org.apache.lucene.search.similarities.Similarity;
import org...
|
[+ show more]
[- hide]
| ....apache.solr.common.params.SolrParams;
import org.apache.solr.schema.SimilarityFactory;
/**
* Factory for {@link LMDirichletSimilarity}
*
* Parameters:
*
* parameter mu (float): smoothing parameter μ. The default... |
| ... is
* 2000
*
*
* Optional settings:
*
* discountOverlaps (bool): Sets
* {@link LMDirichletSimilarity#setDiscountOverlaps(boolean)}
*
* @lucene.experimental
*/
public class... |
| ... LMDirichletSimilarityFactory extends SimilarityFactory {
private boolean discountOverlaps;
private Float mu;
@Override
public void init(SolrParams params) {
super... |
|
|
|
|
|
LMJelinekMercerSimilarityFactory - Solr - [javadoc]
- [see source code]
|
|
...Factory for {@link LMJelinekMercerSimilarity}
Parameters:
parameter lambda (float): smoothing parameter λ. The default
is 0.7
Optional settings:
discount...
|
|
...Overlaps (bool): Sets
{@link LMJelinekMercerSimilarity#setDiscountOverlaps(boolean)}
@lucene.experimental ...
|
|
|
http://search-lucene.com/jd/solr/solr-.../LMJelinekMercerSimilarityFactory.html
|
|
|
BM25SimilarityFactory - Solr - [javadoc]
- [see source code]
|
|
...Factory for {@link BM25Similarity}
Parameters:
k1 (float): Controls non-linear term frequency normalization (saturation).
The default is 1.2
b (float): Controls...
|
|
... to what degree document length normalizes tf values.
The default is 0.75
Optional settings:
discountOverlaps (bool): Sets
{@link BM25Similarity...
|
|
|
http://search-lucene.com/jd/solr/solr-core/org/ap.../BM25SimilarityFactory.html
|
|
|
[SOLR-1493] Provide a non delimiting SpellingQueryConverter - Solr - [issue]
|
|
...The current SpellingQueryConverter spell checks individual words only, but in the case of products or names, it is sometimes better to spell check groups of words together. For example...
|
|
|
http://issues.apache.org/jira/browse/SOLR-1493
Author: Jason Falk,
2012-12-29, 15:53
|
|
|
Providing fault tolerance with Solr - Solr - [mail # user]
|
|
... working. Any known solutions to this. Does solr provide any such functionalities as yet. Thanx. View this message in context: http://www.nabble.com/Providing-fault-tolerance-with-Solr-tp23492418...
|
|
|
Author: mirage1987,
2009-05-11, 22:08
|
|
|
|