C# Class GoodAI.ToyWorld.Language.TextProcessing

Handles text-based language processing in the Toy World language interface. Currently, this is limited to simple tokenization.
ファイルを表示 Open project: GoodAI/BrainSimulator

Public Methods

Method Description
IsEmpty ( string text ) : bool
Tokenize ( string text ) : List
Tokenize ( string text, int maxNumberOfTokens ) : List

Method Details

IsEmpty() public static method

public static IsEmpty ( string text ) : bool
text string
return bool

Tokenize() public static method

public static Tokenize ( string text ) : List
text string
return List

Tokenize() public static method

public static Tokenize ( string text, int maxNumberOfTokens ) : List
text string
maxNumberOfTokens int
return List