Warning: session_start(): open(/var/lib/php/sessions/sess_5877lf9u6bkhk4hj703pprlsoi, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static NLABlock nla_parse(S text) {
ret nla_parse(new NLABlock(text));
}
// fills and returns original object
static NLABlock nla_parse(NLABlock nla) {
// parse into lines (or sentences, both is OK)
if (nla.lines == null)
nla.lines = sentencesOrLines(nla.text);
// get entities
if (nla.entities == null) {
new Matches m;
nla.entities = linkedHashSet();
for (S s : nla.lines)
if "There is...|there are..."
nla.entities.add(new NLABlock.Entity(m.rest(), s));
}
}