| clear query|facets|time |
Search criteria: SimilarityProvider .
Results from 201 to 210 from
10189 (1.157s).
|
|
|
Loading phrases to help you refine your search...
|
|
RE: spellcheck configuration not providing suggestions or corrections - Solr - [mail # user]
|
|
...-4311 From: geeky2 [mailto:[EMAIL PROTECTED]] Sent: Monday, February 13, 2012 11:08 AM To: [EMAIL PROTECTED] Subject: spellcheck configuration not providing suggestions or corrections...
|
|
... material in the solr book (smiley). after doing the configuration in schema.xml and solrconfig.xml - i am NOT able to get the spellchecker to provide ANY suggestions on mis-spelled words. i get...
|
[+ show more]
[- hide]
| ..._mark any help or suggestions would be appreciated, mark View this message in context: http://lucene.472066.n3.nabble.com/spellcheck-configuration-not-providing... |
|
|
Author: Dyer, James,
2012-02-13, 19:07
|
|
|
LMJelinekMercerSimilarityFactory.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.LMJelinekMercerSimilarity;
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 LMJelinekMercerSimilarity}
*
* Parameters:
*
* parameter lambda (float): smoothing parameter &lambda... |
| ...;. The default
* is 0.7
*
*
* Optional settings:
*
* discountOverlaps (bool): Sets
* {@link LMJelinekMercerSimilarity#setDiscountOverlaps(boolean)}
*
* @lucene... |
| ....experimental
*/
public class LMJelinekMercerSimilarityFactory extends SimilarityFactory {
private boolean discountOverlaps;
private float lambda;
@Override
public void init(SolrParams params... |
|
|
|
|
|
RE: spellcheck configuration not providing suggestions or corrections - Solr - [mail # user]
|
|
...=on&spellcheck=true&spellcheck.build=true results: 00trueon0itemDescSpell:gusket true102.2 View this message in context: http://lucene.472066.n3.nabble.com/spellcheck-configuration-not-providing-suggestions-or-corrections-tp3740877p...
|
|
|
Author: geeky2,
2012-02-13, 20:28
|
|
|
BM25SimilarityFactory.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.BM25Similarity;
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 BM25Similarity}
*
* Parameters:
*
* k1 (float): Controls non-linear term frequency normalization (saturation... |
| ...): Sets
* {@link BM25Similarity#setDiscountOverlaps(boolean)}
*
* @lucene.experimental
*/
public class BM25SimilarityFactory extends SimilarityFactory {
private boolean discount... |
| ....getFloat("k1", 1.2f);
b = params.getFloat("b", 0.75f);
}
@Override
public Similarity getSimilarity() {
BM25Similarity sim = new BM25Similarity(k1, b);
sim... |
|
|
|
|
|
Providing token variants at index time - Solr - [mail # user]
|
|
...Is there a tokenizer that supports providing variants of the tokens at index time? I'm looking for something that could take a syntax like: International|I Business|B Machines|M Which...
|
|
|
Author: Paul Dlug,
2010-07-22, 18:27
|
|
|
SimilarityFactory # getParams() - Solr - [javadoc]
- [see source code]
|
|
|
|
http://search-lucene.com/jd/solr/solr-cor.../SimilarityFactory.html#getParams()
|
|
|
DFRSimilarityFactory # getSimilarity() - Solr - [javadoc]
- [see source code]
|
|
|
|
http://search-lucene.com/jd/solr/s.../DFRSimilarityFactory.html#getSimilarity()
|
|
|
IBSimilarityFactory # getSimilarity() - Solr - [javadoc]
- [see source code]
|
|
|
|
http://search-lucene.com/jd/solr/so.../IBSimilarityFactory.html#getSimilarity()
|
|
|
[SOLR-3059] Provide example for XSLTUpdateRequest - Solr - [issue]
|
|
...The XSLT update handler is poorly documented, and http://wiki.apache.org/solr/XsltUpdateRequestHandler should be improvedAlso, there should be an example stylesheet in the conf/xslt folder...
|
|
|
http://issues.apache.org/jira/browse/SOLR-3059
Author: Jan Høydahl,
2012-02-04, 01:15
|
|
|
[SOLR-4411] Provide a facet.maxcount parameter that excludes the counts that are higher than this value in a faceted query - Solr - [issue]
|
|
...The parameter facet.mincount provides a good way of filtering counts less than a given number in a faceted query. facet.maxcount would be the upper bound counterpart for this. Currently I...
|
|
|
http://issues.apache.org/jira/browse/SOLR-4411
Author: Neelesh Shastry,
2013-02-22, 20:41
|
|
|
|