Overview

This specifies how a ExpertiseSearchClauseList containing one or more ExpertiseSearchClause is generated from a list of terms extracted from a body of text.

The parameters pertain to the types of clauses that can be generated:

  • Phrase-match clauses
  • Associated-word clauses
  • Single-word clauses

Note that because these different types of clauses may have different weights, they can be grouped together in bands, with each band containing a clause type. The contribution of each band in the search can then be capped.

Refer to expertiseSearchClauseList, and expertiseSearchClause for more information.

Members

Name Type Required Description

associativeBandPercent

int

The band percentage for associative clauses, or 0 if it is not set.

keywordBandPercent

int

The band percentage for keyword clauses, or 0 if it is not set.

maxAssociativeClauses

int

The maximum number of clauses of form "key1 and (key2 or key3 or key4)"

maxAssociativeWords

int

The maximum number of "associated keywords" for clauses of the form "key1 and (key2 or key3 or key4)".

maxKeywordClauses

int

the maximum number of keyword clauses

maxPhraseClauses

int

The maximum number of phrase clauses

maxPhraseWords

int

The maximum number of words per phrase clause, or 0 if it is not set.

minAssociativeWocc

float

The minimum weighted occurrence for keywords to be selected for clauses.

minPhraseWords

int

The minimum number of words per phrase clause, or 0 if it is not set.

phraseBandPercent

int

The band percentage for phrase clauses, or 0 if it is not set.

Hierarchy

Examples

Below are examples in XML formats. All examples are shown with all inherited members. Quoting when required is part of the examples, but you must obviously populate with your own data.

XML Example

(show inherited members)

<obh:expertiseClauseGenerationSpec xsi:type="obh:expertiseClauseGenerationSpec" xmlns:obh="http://www.oracle.com/beehive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <associativeBandPercent>your_int_0</associativeBandPercent>
        <keywordBandPercent>your_int_0</keywordBandPercent>
        <maxAssociativeClauses>your_int_0</maxAssociativeClauses>
        <maxAssociativeWords>your_int_0</maxAssociativeWords>
        <maxKeywordClauses>your_int_0</maxKeywordClauses>
        <maxPhraseClauses>your_int_0</maxPhraseClauses>
        <maxPhraseWords>your_int_0</maxPhraseWords>
        <minAssociativeWocc>your_float_0</minAssociativeWocc>
        <minPhraseWords>your_int_0</minPhraseWords>
        <phraseBandPercent>your_int_0</phraseBandPercent>
</obh:expertiseClauseGenerationSpec>

Referenced By Representaions