Edit model card

relbert/relbert-roberta-base-semeval2012-v6-average-prompt-d-loob-0-child

RelBERT fine-tuned from roberta-base on
relbert/semeval2012_relational_similarity_v6. Fine-tuning is done via RelBERT library (see the repository for more detail). It achieves the following results on the relation understanding tasks:

  • Analogy Question (dataset, full result):
    • Accuracy on SAT (full): 0.3181818181818182
    • Accuracy on SAT: 0.3115727002967359
    • Accuracy on BATS: 0.5780989438576987
    • Accuracy on U2: 0.38596491228070173
    • Accuracy on U4: 0.36574074074074076
    • Accuracy on Google: 0.75
  • Lexical Relation Classification (dataset, full result):
    • Micro F1 score on BLESS: 0.8646979056802773
    • Micro F1 score on CogALexV: 0.7136150234741784
    • Micro F1 score on EVALution: 0.5563380281690141
    • Micro F1 score on K&H+N: 0.9493635668080963
    • Micro F1 score on ROOT09: 0.8232528987778126
  • Relation Mapping (dataset, full result):
    • Accuracy on Relation Mapping: 0.5528769841269842

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-base-semeval2012-v6-average-prompt-d-loob-0-child")
vector = model.get_embedding(['Tokyo', 'Japan'])  # shape of (1024, )

Training hyperparameters

The following hyperparameters were used during training:

  • model: roberta-base
  • max_length: 64
  • mode: average
  • data: relbert/semeval2012_relational_similarity_v6
  • split: train
  • split_eval: validation
  • template_mode: manual
  • loss_function: info_loob
  • classification_loss: False
  • temperature_nce_constant: 0.05
  • temperature_nce_rank: {'min': 0.01, 'max': 0.05, 'type': 'linear'}
  • epoch: 10
  • batch: 128
  • lr: 5e-06
  • lr_decay: False
  • lr_warmup: 1
  • weight_decay: 0
  • random_seed: 0
  • exclude_relation: None
  • n_sample: 320
  • gradient_accumulation: 8
  • relation_level: None
  • data_level: child

The full configuration can be found at fine-tuning parameter file.

Reference

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


@inproceedings{ushio-etal-2021-distilling-relation-embeddings,
    title = "{D}istilling {R}elation {E}mbeddings from {P}re-trained {L}anguage {M}odels",
    author = "Ushio, Asahi  and
      Schockaert, Steven  and
      Camacho-Collados, Jose",
    booktitle = "EMNLP 2021",
    year = "2021",
    address = "Online",
    publisher = "Association for Computational Linguistics",
}
Downloads last month
9

Dataset used to train research-backup/relbert-roberta-base-semeval2012-v6-average-prompt-d-loob-0-child

Evaluation results