Edit model card

relbert/relbert-roberta-large-nce-a-semeval2012-nell

RelBERT based on roberta-large fine-tuned on relbert/relational_similarity (see the relbert for more detail of fine-tuning). This model achieves the following results on the relation understanding tasks:

  • Analogy Question (dataset, full result):
    • Accuracy on SAT (full): 0.6203208556149733
    • Accuracy on SAT: 0.6112759643916914
    • Accuracy on BATS: 0.773763201778766
    • Accuracy on U2: 0.5789473684210527
    • Accuracy on U4: 0.6134259259259259
    • Accuracy on Google: 0.932
    • Accuracy on ConceptNet Analogy: 0.41359060402684567
    • Accuracy on T-Rex Analogy: 0.6284153005464481
    • Accuracy on NELL-ONE Analogy: 0.8183333333333334
  • Lexical Relation Classification (dataset, full result):
    • Micro F1 score on BLESS: 0.9215006780171764
    • Micro F1 score on CogALexV: 0.852112676056338
    • Micro F1 score on EVALution: 0.680931744312026
    • Micro F1 score on K&H+N: 0.9492244557278987
    • Micro F1 score on ROOT09: 0.9015982450642431
  • Relation Mapping (dataset, full result):
    • Accuracy on Relation Mapping: 0.8665079365079364

Usage

This model can be used through the relbert library. Install the library via pip

pip install relbert

and activate model as below.

from relbert import RelBERT
model = RelBERT("relbert/relbert-roberta-large-nce-a-semeval2012-nell")
vector = model.get_embedding(['Tokyo', 'Japan'])  # shape of (n_dim, )

Training hyperparameters

  • model: roberta-large
  • max_length: 64
  • epoch: 20
  • batch: 64
  • random_seed: 0
  • lr: 5e-06
  • lr_warmup: 10
  • aggregation_mode: average_no_mask
  • data: relbert/relational_similarity
  • data_name: nell_relational_similarity.semeval2012_relational_similarity
  • exclude_relation: None
  • split: train
  • split_valid: validation
  • loss_function: nce
  • classification_loss: False
  • loss_function_config: {'temperature': 0.05, 'num_negative': 300, 'num_positive': 10}
  • augment_negative_by_positive: False

See the full configuration at config file.

Reference

If you use any resource from RelBERT, please consider to cite our paper.


@inproceedings{ushio-etal-2021-distilling,
    title = "Distilling Relation Embeddings from Pretrained Language Models",
    author = "Ushio, Asahi  and
      Camacho-Collados, Jose  and
      Schockaert, Steven",
    booktitle = "Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing",
    month = nov,
    year = "2021",
    address = "Online and Punta Cana, Dominican Republic",
    publisher = "Association for Computational Linguistics",
    url = "https://aclanthology.org/2021.emnlp-main.712",
    doi = "10.18653/v1/2021.emnlp-main.712",
    pages = "9044--9062",
    abstract = "Pre-trained language models have been found to capture a surprisingly rich amount of lexical knowledge, ranging from commonsense properties of everyday concepts to detailed factual knowledge about named entities. Among others, this makes it possible to distill high-quality word vectors from pre-trained language models. However, it is currently unclear to what extent it is possible to distill relation embeddings, i.e. vectors that characterize the relationship between two words. Such relation embeddings are appealing because they can, in principle, encode relational knowledge in a more fine-grained way than is possible with knowledge graphs. To obtain relation embeddings from a pre-trained language model, we encode word pairs using a (manually or automatically generated) prompt, and we fine-tune the language model such that relationally similar word pairs yield similar output vectors. We find that the resulting relation embeddings are highly competitive on analogy (unsupervised) and relation classification (supervised) benchmarks, even without any task-specific fine-tuning. Source code to reproduce our experimental results and the model checkpoints are available in the following repository: https://github.com/asahi417/relbert",
}
Downloads last month
1

Dataset used to train research-backup/relbert-roberta-large-nce-a-semeval2012-nell

Evaluation results