import MontyLingua

theTagger = MontyLingua.MontyLingua()

String = "when was tom born?"

#tokenized the String
tokenizedString = theTagger.tokenize(String)
chunkedString=theTagger.chunk(tokenizedString) #error coming here
#Tag the tokenized String
tagString = theTagger.tag_tokenized(tokenizedString)
print tagString
#A more simple way to tag the String
tagString = theTagger.jist(String)

can anyubody help me why error is occuring there and how to use montylingua ?? please....

Recommended Answers

All 3 Replies

yaa..i got clarified the problem, I am using MontyLingua.py and trying to access the MontyREChunker.py 's method..anyway thanks for replying...

and can you suggest any good packages in pyhton for named entity recognization ??

Praveen : Can you share the solution of your problem?

I am stuck on similar problem.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.