Neural Network Console accepts any type of data represented as vectors and matrices.
Classification of symbol sequences like word classification can be realized by inputting the symbol index sequence and using the Embedding layer.
First, prepare a dataset with symbol index sequence.
e.g. {' '=0, 'a'=1, 'b'=2, ... }

Second, input the data to the graph using Input layer and Embedding layer.
