ApiData().CleanConcepts

Removes unused and ontologically disconnected Concepts from memory

Description

This function is an optimization procedure that removes any extraneous Conceptual data not pertinent to the currently loaded knowledge base. During the course of development, chatting with the Brain or drafting Behavior Content will cause SILVIA to index all of the words and strings it stores. Therefore, Concepts may be created or loaded by trainers “in-passing”, and can potentially end up as useless, disconnected data. Invoking this function “cleans up” the Concept data so that only useful and used information is retained.

Example Usage (C#)


bool success = _core.ApiData().CleanConcepts();

Parameters

None.

Returns

The boolean success or failure of the operation.

ApiData()