Home
last modified time | relevance | path

Searched refs:scorers (Results 1 – 25 of 141) sorted by relevance

123456

/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/external/Lucene.Net.Light/src/core/Search/
H A DConjunctionScorer.cs27 private Scorer[] scorers; field in Lucene.Net.Search.ConjunctionScorer
38 this.scorers = scorers; in ConjunctionScorer()
39 coord = similarity.Coord(scorers.Length, scorers.Length); in ConjunctionScorer()
85 Scorer tmp = scorers[i]; in ConjunctionScorer()
87 scorers[i] = scorers[idx]; in ConjunctionScorer()
88 scorers[idx] = tmp; in ConjunctionScorer()
95 int doc = scorers[scorers.Length - 1].DocID(); in DoNext()
111 else if (scorers[(scorers.Length - 1)].DocID() < target) in Advance()
113 scorers[(scorers.Length - 1)].Advance(target); in Advance()
131 return lastDoc = scorers[scorers.Length - 1].DocID(); in NextDoc()
[all …]
H A DBooleanScorer.cs215 private SubScorer scorers = null; field in Lucene.Net.Search.BooleanScorer
241 scorers = new SubScorer(scorer, false, false, bucketTable.NewCollector(0), scorers); in BooleanScorer()
255 scorers = new SubScorer(scorer, false, true, bucketTable.NewCollector(mask), scorers); in BooleanScorer()
318 for (SubScorer sub = scorers; sub != null; sub = sub.next) in Score()
364 for (SubScorer sub = scorers; sub != null; sub = sub.next) in NextDoc()
396 for (SubScorer sub = scorers; sub != null; sub = sub.next) in ToString()
H A DBooleanScorer2.cs48 …oleanScorer2 enclosingInstance, System.Collections.Generic.IList<Scorer> scorers, int minNrShouldM… in AnonymousClassDisjunctionSumScorer() argument
49 : base(scorers, minNrShouldMatch) in AnonymousClassDisjunctionSumScorer()
269 …private Scorer CountingDisjunctionSumScorer(System.Collections.Generic.List<Scorer> scorers, int m… in CountingDisjunctionSumScorer() argument
272 return new AnonymousClassDisjunctionSumScorer(this, scorers, minNrShouldMatch); in CountingDisjunctionSumScorer()
/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/src/core/search/
H A DConjunctionScorer.cpp21 this->scorers = scorers; in ConjunctionScorer()
22 this->coord = similarity->coord(scorers.size(), scorers.size()); in ConjunctionScorer()
24 …for (Collection<ScorerPtr>::iterator scorer = scorers.begin(); scorer != scorers.end(); ++scorer) { in ConjunctionScorer()
36 std::sort(scorers.begin(), scorers.end(), lessScorerDocId()); in ConjunctionScorer()
59 scorers[i] = scorers[idx]; in ConjunctionScorer()
60 scorers[idx] = tmp; in ConjunctionScorer()
69 int32_t doc = scorers[scorers.size() - 1]->docID(); in doNext()
81 } else if (scorers[(scorers.size() - 1)]->docID() < target) { in advance()
82 scorers[(scorers.size() - 1)]->advance(target); in advance()
96 lastDoc = scorers[scorers.size() - 1]->docID(); in nextDoc()
[all …]
H A DBooleanScorer2.cpp40 ScorerPtr BooleanScorer2::countingDisjunctionSumScorer(Collection<ScorerPtr> scorers, int32_t minNr… in countingDisjunctionSumScorer() argument
42 return newLucene<CountingDisjunctionSumScorer>(shared_from_this(), scorers, minNrShouldMatch); in countingDisjunctionSumScorer()
51 Collection<ScorerPtr> scorers(newCollection<ScorerPtr>(req1, req2)); in dualConjunctionSumScorer() local
55 return newLucene<ConjunctionScorer>(Similarity::getDefault(), scorers); in dualConjunctionSumScorer()
204 …st SimilarityPtr& similarity, Collection<ScorerPtr> scorers) : ConjunctionScorer(similarity, score… in CountingConjunctionSumScorer() argument
207 requiredNrMatchers = scorers.size(); in CountingConjunctionSumScorer()
H A DBooleanScorer.cpp27scorers = newLucene<SubScorer>(*scorer, false, false, bucketTable->newCollector(0), scorers); in BooleanScorer()
38scorers = newLucene<SubScorer>(*scorer, false, true, bucketTable->newCollector(mask), scorers); in BooleanScorer()
94 for (SubScorerPtr sub(scorers); sub; sub = sub->next) { in score()
135 for (SubScorerPtr sub(scorers); sub; sub = sub->next) { in nextDoc()
164 for (SubScorerPtr sub(scorers); sub; sub = sub->next) { in toString()
/dports/textproc/clucene/clucene-core-2.3.3.4/src/core/CLucene/search/
H A DConjunctionScorer.cpp27 coord = getSimilarity()->coord(this->scorers->length, this->scorers->length); in CL_NS_USE()
38 coord = getSimilarity()->coord(this->scorers->length, this->scorers->length); in ConjunctionScorer()
41 _CLLDELETE(scorers); in ~ConjunctionScorer()
56 more = scorers->values[(scorers->length-1)]->next(); in next()
63 Scorer* lastScorer = scorers->values[scorers->length-1]; in doNext()
77 more = scorers->values[(scorers->length-1)]->skipTo(target); in skipTo()
88 more = scorers->length>1; in init()
92 more = target==0 ? scorers->values[i]->next() : scorers->values[i]->skipTo(target); in init()
102 qsort(scorers->values,scorers->length, sizeof(Scorer*), ConjunctionScorer_sort); in init()
115 scorers->values[i] = scorers->values[end-i]; in init()
[all …]
H A DBooleanScorer.cpp20 scorers(NULL), in CL_NS_DEF()
40 _CLDELETE(scorers); in ~BooleanScorer()
61 for (SubScorer* sub = scorers; sub != NULL; sub = sub->next) { in next()
99 for (SubScorer* sub = scorers; sub != NULL; sub = sub->next) { in toString()
128 scorers = _CLNEW SubScorer(scorer, required, prohibited, in add()
129 bucketTable->newCollector(mask), scorers); in add()
178 for ( SubScorer* sub = scorers; sub != NULL; sub = sub->next ) { in score()
H A D_ConjunctionScorer.h17 CL_NS(util)::ArrayBase<Scorer*>* scorers; in CL_NS_DEF()
29 ConjunctionScorer(Similarity* similarity, ScorersType* scorers); in CL_NS_DEF()
30 ConjunctionScorer(Similarity* similarity, const CL_NS(util)::ArrayBase<Scorer*>* scorers); in CL_NS_DEF()
H A DBooleanScorer2.cpp450 Scorer* countingDisjunctionSumScorer( ScorersType* scorers, int32_t minNrShouldMatch ) in countingDisjunctionSumScorer() argument
452 return _CLNEW BSDisjunctionSumScorer( coordinator, scorers, minNrShouldMatch ); in countingDisjunctionSumScorer()
462 ValueArray<Scorer*> scorers(2); in dualConjunctionSumScorer() local
463 scorers[0] = req1; in dualConjunctionSumScorer()
464 scorers[1] = req2; in dualConjunctionSumScorer()
465 return _CLNEW CL_NS(search)::ConjunctionScorer( Similarity::getDefault(), &scorers ); in dualConjunctionSumScorer()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/clucene/src/CLucene/search/
H A DConjunctionScorer.cpp16 if ( scorers.end() == scorers.begin() ) in CL_NS_USE()
19 return *scorers.begin(); in CL_NS_USE()
22 if ( scorers.end() == scorers.begin() ) in last()
45 scorers.toArray(array); in sortScorers()
61 scorers.delete_front(); in doNext()
69 more = scorers.size() > 0; in init()
72 coord = getSimilarity()->coord(scorers.size(), scorers.size()); in init()
89 scorers(false), in ConjunctionScorer()
96 scorers.setDoDelete(true); in ~ConjunctionScorer()
105 scorers.push_back(scorer); in add()
[all …]
H A DBooleanScorer.cpp18 scorers(NULL), in CL_NS_DEF()
37 _CLDELETE(scorers); in ~BooleanScorer()
58 for (SubScorer* sub = scorers; sub != NULL; sub = sub->next) { in next()
91 for (SubScorer* sub = scorers; sub != NULL; sub = sub->next) { in toString()
118 scorers = _CLNEW SubScorer(scorer, required, prohibited, in add()
119 bucketTable->newCollector(mask), scorers); in add()
/dports/databases/pgroonga/pgroonga-2.3.4/src/
H A Dpgrn-full-text-search-condition.c21 ArrayType **scorers, in PGrnFullTextSearchConditionDeconstructGeneric() argument
68 if (scorers) in PGrnFullTextSearchConditionDeconstructGeneric()
69 *scorers = NULL; in PGrnFullTextSearchConditionDeconstructGeneric()
98 if (scorers) in PGrnFullTextSearchConditionDeconstructGeneric()
99 *scorers = DatumGetArrayTypeP(datum); in PGrnFullTextSearchConditionDeconstructGeneric()
155 ArrayType **scorers, in PGrnFullTextSearchConditionWithScorersDeconstruct() argument
162 2, scorers, in PGrnFullTextSearchConditionWithScorersDeconstruct()
/dports/games/supertuxkart/SuperTuxKart-1.2-src/src/states_screens/
H A Drace_result_gui.cpp1408 while (scorers.size() > 10) in displaySoccerResults()
1410 scorers.erase(scorers.begin()); in displaySoccerResults()
1415 for (unsigned int i = 0; i < scorers.size(); i++) in displaySoccerResults()
1419 result_text = scorers.at(i).m_player; in displaySoccerResults()
1429 if (!scorers.at(i).m_country_code.empty()) in displaySoccerResults()
1469 scorers = sw->getScorers(KART_TEAM_BLUE); in displaySoccerResults()
1471 while (scorers.size() > 10) in displaySoccerResults()
1473 scorers.erase(scorers.begin()); in displaySoccerResults()
1476 for (unsigned int i = 0; i < scorers.size(); i++) in displaySoccerResults()
1480 result_text = scorers.at(i).m_player; in displaySoccerResults()
[all …]
/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/metrics/tests/
H A Dtest_score_objects.py293 scorers = _check_multimetric_scoring(estimator, scoring)
294 assert isinstance(scorers, dict)
295 assert sorted(scorers.keys()) == sorted(list(scoring))
758 scorers, argument
785 assert set(scorers) == set(results) # compare dict keys
807 scorers = ["roc_auc", "neg_log_loss"]
808 scorer_dict = _check_multimetric_scoring(clf, scorers)
831 scorer_dict = _check_multimetric_scoring(clf, scorers)
840 scorers = {
854 scorer_dict = _check_multimetric_scoring(clf, scorers)
[all …]
/dports/misc/orange3/orange3-3.29.1/Orange/widgets/data/
H A Dowrank.py227 scorers: List[ScoreMeta],
230 progress_steps = iter(np.linspace(0, 100, len(methods) + len(scorers)))
295 self.scorers = OrderedDict()
445 self.scorers.pop(id, None)
449 if id in self.scorers:
471 scorers = []
472 for scorer in self.scorers.values():
477 scorers.append(scorer)
482 return scorers
492 scorers = [
[all …]
/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/include/lucene++/
H A DConjunctionScorer.h17 ConjunctionScorer(const SimilarityPtr& similarity, Collection<ScorerPtr> scorers);
23 Collection<ScorerPtr> scorers;
/dports/textproc/p5-Plucene/Plucene-1.25/lib/Plucene/Search/
H A DBooleanScorer.pm56 $self->scorers([]);
79 push @{ $self->{scorers} },
109 for my $t (@{ $self->{scorers} }) {
/dports/devel/py-rapidfuzz/rapidfuzz-1.8.0/src/rapidfuzz.egg-info/
H A DPKG-INFO151 performant than using the scorers directly from Python.
177 The first benchmark compares the performance of the scorers in FuzzyWuzzy and RapidFuzz when they a…
184 …second with each of the scorers. There are big performance differences between the different score…
188 The second benchmark compares the performance when the scorers are used in combination with extract…
194 …any elements are processed per second with each of the scorers. In RapidFuzz the usage of scorers
/dports/devel/py-rapidfuzz/rapidfuzz-1.8.0/
H A DPKG-INFO151 performant than using the scorers directly from Python.
177 The first benchmark compares the performance of the scorers in FuzzyWuzzy and RapidFuzz when they a…
184 …second with each of the scorers. There are big performance differences between the different score…
188 The second benchmark compares the performance when the scorers are used in combination with extract…
194 …any elements are processed per second with each of the scorers. In RapidFuzz the usage of scorers
H A DREADME.md127 performant than using the scorers directly from Python.
153 The first benchmark compares the performance of the scorers in FuzzyWuzzy and RapidFuzz when they a…
160 …second with each of the scorers. There are big performance differences between the different score…
164 The second benchmark compares the performance when the scorers are used in combination with extract…
170 …any elements are processed per second with each of the scorers. In RapidFuzz the usage of scorers
/dports/misc/rump/buildrump.sh-b914579/src/sys/netinet/
H A Din_selsrc.c448 in_score_src_t scorers[IN_SCORE_SRC_MAX]; in in_set_selectsrc() local
450 memset(&scorers, 0, sizeof(scorers)); in in_set_selectsrc()
458 scorers[i] = score_src; in in_set_selectsrc()
463 (void)memcpy(iss->iss_score_src, scorers, sizeof(iss->iss_score_src)); in in_set_selectsrc()
471 scorers[0] != NULL) in in_set_selectsrc()
/dports/misc/orange3/orange3-3.29.1/Orange/tests/
H A Dtest_score_feature.py49 scorers = [Gini(), InfoGain(), GainRatio()]
50 for scorer in scorers:
55 scorers = [Gini(), InfoGain(), GainRatio()]
56 for scorer in scorers:
/dports/misc/orange3/orange3-3.29.1/Orange/widgets/evaluate/
H A Dowtestandscore.py228 self.scorers = []
501 if new_scorers != self.scorers:
502 self.scorers = new_scorers
506 for scorer in self.scorers])
507 if self.scorers:
519 if criterion < len(self.scorers):
520 scorer = self.scorers[criterion]()
536 self.score_table.update_header(self.scorers)
629 for scorer in self.scorers]
667 if not (slots and self.scorers):
[all …]
/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/src/test/search/
H A DBooleanScorerTest.cpp95 …Collection<ScorerPtr> scorers = newCollection<ScorerPtr>(newLucene<TestEmptyBucketWithMoreDocs::Em… in TEST_F() local
97 BooleanScorerPtr bs = newLucene<BooleanScorer>(sim, 1, scorers, Collection<ScorerPtr>()); in TEST_F()

123456