bmeaut / python_nlp_2017_fall

Material for the 2017 fall edition of the course "Introduction to Python and Human Language Technologies" at BME AUT
MIT License
12 stars 13 forks source link

Homework3 #15

Open balintdom opened 6 years ago

balintdom commented 6 years ago

Hello!

I have two questions about the hw: 1.1.1: Do we have to do the morphological analysis? (now my program only recognizes the correct words, and writes them to the console)

1.2.1: Are there any easy way to cut the strings into morphemes? (if i understand it well, we have to cut them to morphemes before we handle it to the nltk cfg parser) Or should we do it with basic string operations?

Thank you in advance!

DavidNemeskey commented 6 years ago

1.1.1.: Yes, definitely. It was part of the lab exercises, after all. 1.2.1.: You can do that (but be warned that in that case you are basically doing the parser's work for it...), or just skim through the other questions...

balintdom commented 6 years ago

Sorry I didn't notice that question. Thank you for your response!