Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for rank (0.02 sec)

  1. src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java

    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryShardContext;
    
    /**
     * A query builder for a stored LTR (Learning to Rank) query.
     * This builder constructs a query that uses a pre-trained LTR model
     * to re-rank search results based on a given set of features.
     */
    public class StoredLtrQueryBuilder extends AbstractQueryBuilder<StoredLtrQueryBuilder> implements NamedWriteable {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ComponentUtil.java

         */
        public static CorsHandlerFactory getCorsHandlerFactory() {
            return getComponent(CORS_HANDLER_FACTORY);
        }
    
        /**
         * Gets the rank fusion processor component.
         * @return The rank fusion processor.
         */
        public static RankFusionProcessor getRankFusionProcessor() {
            return getComponent(RANK_FUSION_PROCESSOR);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    labels.facet_filetype_txt=filetype:txt\t\
    labels.facet_filetype_others=filetype:others\n\
    
    # ranking
    
    # Window size for rank fusion.
    rank.fusion.window_size=200
    # Rank constant for rank fusion.
    rank.fusion.rank_constant=20
    # Number of threads for rank fusion.
    rank.fusion.threads=-1
    # Score field for rank fusion.
    rank.fusion.score_field=rf_score
    
    # acl
    
    # Whether to get SMB roles from a file.
    smb.role.from.file=true
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         * @throws NumberFormatException When the property is not integer.
         */
        Integer getRankFusionWindowSizeAsInteger();
    
        /**
         * Get the value for the key 'rank.fusion.rank_constant'. <br>
         * The value is, e.g. 20 <br>
         * comment: Rank constant for rank fusion.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  5. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.rank.fusion;
    
    import java.util.HashMap;
    import java.util.Locale;
    import java.util.Map;
    
    import org.apache.lucene.search.TotalHits.Relation;
    import org.codelibs.fess.entity.FacetInfo;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.rank.fusion;
    
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    
    import org.codelibs.fess.entity.FacetInfo;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SearchHelper.java

    import org.codelibs.fess.opensearch.client.SearchEngineClient.SearchConditionBuilder;
    import org.codelibs.fess.opensearch.client.SearchEngineClientException;
    import org.codelibs.fess.query.QueryFieldConfig;
    import org.codelibs.fess.rank.fusion.RankFusionProcessor;
    import org.codelibs.fess.util.BooleanFunction;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.QueryResponseList;
    import org.dbflute.optional.OptionalEntity;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.rank.fusion;
    
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    import org.apache.lucene.search.TotalHits.Relation;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  9. pom.xml

    					<groupId>org.opensearch.plugin</groupId>
    					<artifactId>aggs-matrix-stats-client</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>org.opensearch.plugin</groupId>
    					<artifactId>rank-eval-client</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>org.opensearch.plugin</groupId>
    					<artifactId>lang-expression</artifactId>
    				</exclusion>
    				<exclusion>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 04 05:22:58 UTC 2025
    - 49.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            ComponentUtil.getLanguageHelper().updateDocument(map);
        }
    
        /**
         * Adds a boost value to the document for search relevance scoring.
         * The boost value affects how highly the document will rank in search results.
         *
         * @param map the document data map to add the boost value to
         * @param documentBoost the boost value to apply to the document
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top