1

when using arabic wordnet in python , I follow this post Import Arabic Wordnet in python

and when run this command wn.get_synsets_from_word(u"جَمِيل") raise AttributeError: 'WordNetCorpusReader' object has no attribute 'get_synsets_from_word' how solve this error and use arabic wordnet correctly?

Community
  • 1
  • 1

1 Answers1

1

This Arabic Wordnet has no relation to Wordnet but the name. Wordnet has not that function wn.get_synsets_from_word. You should download Arabic Wordnet from here.

Assem
  • 11,574
  • 5
  • 59
  • 97
  • I download Arabic wordnet "AWNDatabaseManagement.py" and run it correctly . how use it for my own ? and how using it to run this command wn.get_synsets_from_word(u"جَمِيل") – Eman Naguib Nov 28 '15 at 12:44
  • follow what explained in the answer here: http://stackoverflow.com/questions/29522161/import-arabic-wordnet-in-python – Assem Nov 28 '15 at 12:44
  • I download Arabic wordnet "AWNDatabaseManagement.py" and run it correctly ,but when run this command wn.get_synsets_from_word(u"جَمِيل") raise AttributeError: 'WordNetCorpusReader' object has no attribute 'get_synsets_from_word' how solve this error and use arabic wordnet correctly? – Eman Naguib Jan 15 '16 at 23:40
  • @ bigOTHER thanks it run ok, I just start using AWN do you have any thing help my in use it ? – Eman Naguib Jan 15 '16 at 23:57
  • @EmanNaguib Actually AWN lacks real documentation, if any issue , ask in Stackoverflow and ping me – Assem Jan 15 '16 at 23:59
  • @EmanNaguib Welcome, Please consider to mark the other answer as accepted then upvote both,.. http://stackoverflow.com/a/34821932/1327005 – Assem Jan 16 '16 at 00:06