-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documenting depenencies between modules #107
Comments
Hi Gustavo, I guess it will depend on your input format. How is your data? Is it a raw text? If so, you need to tokenize, split into sentences, and make basic morphosyntactic analysis: lemmatization, POS tagging. Keep in mind that multi-word expressions also need to be identified (Freeling can handle only adjacents MWE) and merged into a single token. Does it make sense? |
Yes.
Yes! Thanks. :-) Is there a page in the documentation listing dependencies between analyzers/modules? |
No, there is no such documentation However, senses module requires only basic morphological analysis (i.e. "dictionary" module) if you run freeling with default configuration, you'd get reasonable results for your goals. Any modules in the morphological analyzer can be deactivated at will, with --nonumb, --nodates, --noloc, etc (see user manual), depending on your needs. As arademaker said, if you deactivate multiwords (--noloc) you may miss the sense for some multiwords existing in wordnet (e.g. "in_particular"), and get the sense only for each elements ("in", and "particular") |
Hi there!
Thanks for this library! It is awesome.
I'm reading the documentation I'm having difficulties to know which morphological analyzer is required to use the senses module. I think it would be nice if the documentation pointed to the dependencies for a give module.
In my use case I just want to use the senses module, so I would like to enable only the required modules in the morphological analyzer.
Regards,
Gustavo Sousa
The text was updated successfully, but these errors were encountered: