I am searching for an R package that implements MaxEnt for NLP tasks (i.e. for situations with large no. of parameters).
The requirement is to perform Named Entity Recognition on medical text. I got used to relying on CRF++ for sequence labelling jobs but for this particular entity recognition task at hand, I dont want the transition/label input.
I have checked Maxent Package - it creates a tf-idf representation which I dont want. I need to provide my features as combinations of previous and next words, pos tags, etc. Very similar to how one would use CRF++.