How to generate embeddings for new candidates?
See original GitHub issueHi,
I am been going through the code, documentation and issues to figure out how to obtain embeddings for new candidates - however I have not been able to figure this out.
I would like to add new candidates to all_entities_large.t7
file.
Firstly, the script generate_candidates.py
is supposed to generate the embeddings given the token_idxs
of new entities (the input parameters saved_cand_ids
refers to a file that has these token_idxs
), however, it is not clear how to generate these token_idxs
.
So, I tried to reverse engineer generating embeddings for the following entity in entity.jsonl
file:
{
"text": " Aristotle (; \"Aristoteles\", ; 384–322 BC) was a Greek philosopher during the Classical period in Ancient Greece, the founder of the Lyceum and the Peripatetic school of philosophy and Aristotelian tradition. Along with his teacher Plato, he has been called the \"Father of Western Philosophy\". His writings cover many subjects – including physics, biology, zoology, metaphysics, logic, ethics, aesthetics, poetry, theatre, music, rhetoric, psychology, linguistics, economics, politics and government. Aristotle provided a complex synthesis of the various philosophies existing prior to him, and it was above all from his teachings that the West inherited its intellectual lexicon, as well as problems and methods of inquiry. As a result, his philosophy has exerted a unique influence on almost every form of knowledge in the West and it continues to be a subject of contemporary philosophical discussion. Little is known about his life. Aristotle was born in the city of Stagira in Northern Greece. His father, Nicomachus, died when Aristotle was a child, and he was brought up by a guardian. At seventeen or eighteen years of age, he joined Plato's Academy in Athens and remained there until the age of thirty-seven (c. 347 BC). Shortly after Plato died, Aristotle left Athens and, at the request of Philip II of Macedon, tutored Alexander the Great beginning in 343 BC. He established a library in the Lyceum which helped him to produce many of his hundreds of books on papyrus scrolls. Though Aristotle wrote many elegant treatises and dialogues for publication, only around a third of his original",
"idx": "https://en.wikipedia.org/wiki?curid=308",
"title": "Aristotle",
"entity": "Aristotle",
}
Firing up main_dense.py
in interactive mode and submitting the above text produces the following named entities (persons only):
I then tried running the samples corresponding to Aristotle
mentions through both context and candidate encoder parts of BiEncoder and saved the embeddings to the disk, however, they are all different from the one in all_entities_large.t7
.
Are we supposed to average the embeddings of all the mentions corresponding to Aristotle
entity? Or any other logic?
The BLINK paper says, the embeddings for candidates were generated by taking first 10 lines from their Wikipedia description, however, only 32 tokens are submitted to encoder to obtain an embedding, so not sure why 10 lines were selected.
Thanks!
Issue Analytics
- State:
- Created 2 years ago
- Comments:5
Top GitHub Comments
Thanks to @ledw-2 and others from other issues, I was able to recreate embeddings for existing entities (in
entity.json
) using their Wikipedia description and title and was able to verify that they match those inall_entities.t7
up to the 6th decimal point.Given a new entity title and its description, here’s how to generate its embeddings:
The file in which these ids are saved should be passed in the
--saved_cand_ids
param of scripts/generate_candidates.py.Thanks to the FB team for this awesome project!
I see. you mean I could get my new_encode_list = torch.cat((old_encode_list, new_entities_tokens)) could you share code if possible?