nlpnet icon indicating copy to clipboard operation
nlpnet copied to clipboard

A neural network architecture for NLP tasks, using cython for fast performance. Currently, it can perform POS tagging, SRL and dependency parsing.

Results 1 nlpnet issues
Sort by recently updated
recently updated
newest added

``` taggers.py def parse_sentence(self, tokens): if self.use_pos: tokens = self.pos_tagger.tag_tokens(tokens, return_tokens=True) #if not using pos. tokens are not tuple. for token in tokens: if self.use_pos: word, pos = token else:...