Search Results for

    Show / Hide Table of Contents

    Enum StorageType

    The type of storage used in a vector, which is specified as part of the Sparsity class.

    Namespace: Microsoft.ML.Probabilistic.Math
    Assembly: Microsoft.ML.Probabilistic.dll
    Syntax
    public enum StorageType

    Fields

    Name Description
    Dense

    The vector is stored as a dense array with memory allocated for each element.

    Piecewise

    The vector is stored as a set of pieces with each piece having a constant value, and all elements not in any piece having a particular common value.

    Sparse

    The vector is stored as a sparse array with memory allocated only for elements that do not have a particular common value.

    In This Article
    Back to top Copyright © .NET Foundation. All rights reserved.