Search Results for

    Show / Hide Table of Contents

    Class TermVectorFilter

    Filter terms returned based on their TF-IDF scores. This can be useful in order find out a good characteristic vector of a document.

    Inheritance
    object
    TermVectorFilter
    Implements
    ITermVectorFilter
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: OpenSearch.Client
    Assembly: OpenSearch.Client.dll
    Syntax
    public class TermVectorFilter : ITermVectorFilter

    Properties

    | Edit this page View Source

    MaximumDocumentFrequency

    Ignore words which occur in more than this many docs. Defaults to unbounded.

    Declaration
    public int? MaximumDocumentFrequency { get; set; }
    Property Value
    Type Description
    int?
    | Edit this page View Source

    MaximumNumberOfTerms

    Maximum number of terms that must be returned per field. Defaults to 25.

    Declaration
    public int? MaximumNumberOfTerms { get; set; }
    Property Value
    Type Description
    int?
    | Edit this page View Source

    MaximumTermFrequency

    Ignore words with more than this frequency in the source doc. Defaults to unbounded.

    Declaration
    public int? MaximumTermFrequency { get; set; }
    Property Value
    Type Description
    int?
    | Edit this page View Source

    MaximumWordLength

    The maximum word length above which words will be ignored. Defaults to unbounded.

    Declaration
    public int? MaximumWordLength { get; set; }
    Property Value
    Type Description
    int?
    | Edit this page View Source

    MinimumDocumentFrequency

    Ignore terms which do not occur in at least this many docs. Defaults to 1.

    Declaration
    public int? MinimumDocumentFrequency { get; set; }
    Property Value
    Type Description
    int?
    | Edit this page View Source

    MinimumTermFrequency

    Ignore words with less than this frequency in the source doc. Defaults to 1.

    Declaration
    public int? MinimumTermFrequency { get; set; }
    Property Value
    Type Description
    int?
    | Edit this page View Source

    MinimumWordLength

    The minimum word length below which words will be ignored. Defaults to 0.

    Declaration
    public int? MinimumWordLength { get; set; }
    Property Value
    Type Description
    int?

    Implements

    ITermVectorFilter

    Extension Methods

    SuffixExtensions.Suffix(object, string)
    • Edit this page
    • View Source
    In this article
    • Properties
      • MaximumDocumentFrequency
      • MaximumNumberOfTerms
      • MaximumTermFrequency
      • MaximumWordLength
      • MinimumDocumentFrequency
      • MinimumTermFrequency
      • MinimumWordLength
    • Implements
    • Extension Methods
    Back to top Generated by DocFX