Hi,
I followed the example and the sentence splitter was emitting empty strings.
The issue was solved for me by changing line 72 of SplitSentence.h from:
std::string s = tuple.GetValues()[2].asString();
to
std::string s = tuple.GetValues()[0].asString();
Hi, I followed the example and the sentence splitter was emitting empty strings.
The issue was solved for me by changing line 72 of SplitSentence.h from: std::string s = tuple.GetValues()[2].asString(); to std::string s = tuple.GetValues()[0].asString();