Closed yhshu closed 2 years ago
Hi, I think it is a typo here. Replacing out_base_gq
with trained_ner_model
should be fine, because the file you downloaded is actually named as trained_ner_model
rather than out_base_gq
. I will fix it in my code.
Thanks for your information.
I also noticed that there's a lot of aaqu
in codes. But is it aqqu
?
I also noticed that there's a lot of
aaqu
in codes. But is itaqqu
?
Yeah, for the entity disambiguation part I reuse some code from aaqu to construct the index for quick indexing, but it is not the same as aaqu because the performance of aaqu is very low on our dataset, so I turned to use a BERT-based NER model.
I also noticed that there's a lot of
aaqu
in codes. But is itaqqu
?Yeah, for the entity disambiguation part I reuse some code from aaqu to construct the index for quick indexing, but it is not the same as aaqu because the performance of aaqu is very low on our dataset, so I turned to use a BERT-based NER model.
Understood.
Actually, what I was referring to was a small mistake in the code, i.e., a typo, the name of the entity linker is aqqu
instead of aaqu
?
BTW, may I know that how does the effect of google entity link API compares with FACC1? Thanks.
BTW, may I know that how does the effect of google entity link API compares with FACC1? Thanks.
Sorry for the late response! I just saw your reply... I actually tried the google knowledge graph API for entity linking because I noticed that Freebase API was actually a de facto choice for entity linking in many previous works before it was down. I do not have the precise numbers for the performance using google knowledge graph API, but I can tell it was not good, and that's why I turned to use the FACC1 scores. My wild guess is that knowledge graph API integrates more sources of information other than Freebase and therefore makes it more noisy. Hope my answer can be helpful. Happy Chinese new year!
I agree with the preliminary conclusion that Google API may not achieve the FACC1 performance according to my previous experiments. Thanks and happy Chinese New Year.
Hi there, when I was running main function of
bert_entity_linker
, I got this message.I noticed that there's no file called
model_config.json
inout_base_gq
directory. May I know if I executed this function incorrectly or I need to get this file in some way?