relbert icon indicating copy to clipboard operation
relbert copied to clipboard

The official implementation of "Distilling Relation Embeddings from Pre-trained Language Models, EMNLP 2021 main conference", a high-quality relation embedding based on language models.

Results 1 relbert issues
Sort by recently updated
recently updated
newest added

Hello, I'm currently using RelBERT for my experiment and it is quite slow when calling it. ```python pairlist = [['token1', 'token2'], ...] for pair in pairlist: emb = model.get_embedding(pair) #...