Click or drag to resize

ToolkitOperationContext Class

Home | imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Containes input, output and data structures used by algorithms in the library.
Inheritance Hierarchy
SystemObject
  imbNLP.ToolkitToolkitOperationContext

Namespace:  imbNLP.Toolkit
Assembly:  imbNLP.Toolkit (in imbNLP.Toolkit.dll) Version: 0.2.30
Syntax
C#
public class ToolkitOperationContext

The ToolkitOperationContext type exposes the following members.

Constructors
  NameDescription
Public methodToolkitOperationContext
Initializes a new instance of the ToolkitOperationContext class
Top
Properties
  NameDescription
Public propertyconstructor
Public propertyspace
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

Intended use of the OperationContext:

  • Assign to the input TextDocuments
  • Assign any relevant extra information, like SpaceLabels for the documents contained

Once ready, call desired API method of the library and pass the OperationContext to it.

Depending on the method, the OperationContext instance may contain:

  • The SpaceCorpora constructed or updated by the procedure
  • Set of SpaceDocumentModels, constructed from the input documents
  • Set of extracted topics SpaceTopic, if a method of latent semantic analysis, clusterization or other data mining method was performed
See Also