阿拉伯字网同义词c#
Arabic word net synonyms c#
我正在使用阿拉伯语单词 NET 库来获取给定单词的同义词,但我没有得到任何结果这是我使用的代码
awn = new AWN(@"..\..\awn.xml", true);
List<string> words = new List<string>();
string str = awn.Get_Synset_ID_From_Word_Id("كثير");
但是没有返回结果。
有帮助吗??
我是这样解决的
awn = new AWN(@"..\..\awn.xml", false);
List<string> words = new List<string>();
//get Item Id of the word
List<string> item_id = awn.Get_Item_Id_From_Name("عرض");
//get the synonyms of the word
words = awn.Get_List_Word_Id_From_Synset_ID(item_id.First());
//get the word value for the first meaning
string s = awn.Get_Word_Value_From_Word_Id(words[0]);
我正在使用阿拉伯语单词 NET 库来获取给定单词的同义词,但我没有得到任何结果这是我使用的代码
awn = new AWN(@"..\..\awn.xml", true);
List<string> words = new List<string>();
string str = awn.Get_Synset_ID_From_Word_Id("كثير");
但是没有返回结果。 有帮助吗??
我是这样解决的
awn = new AWN(@"..\..\awn.xml", false);
List<string> words = new List<string>();
//get Item Id of the word
List<string> item_id = awn.Get_Item_Id_From_Name("عرض");
//get the synonyms of the word
words = awn.Get_List_Word_Id_From_Synset_ID(item_id.First());
//get the word value for the first meaning
string s = awn.Get_Word_Value_From_Word_Id(words[0]);