asahi417's picture
model update
b7991c7
metadata
datasets:
  - relbert/semeval2012_relational_similarity
model-index:
  - name: relbert/roberta-large-semeval2012-mask-prompt-b-nce-classification
    results:
      - task:
          name: Relation Mapping
          type: sorting-task
        dataset:
          name: Relation Mapping
          args: relbert/relation_mapping
          type: relation-mapping
        metrics:
          - name: Accuracy
            type: accuracy
            value: 0.7908730158730158
      - task:
          name: Analogy Questions (SAT full)
          type: multiple-choice-qa
        dataset:
          name: SAT full
          args: relbert/analogy_questions
          type: analogy-questions
        metrics:
          - name: Accuracy
            type: accuracy
            value: 0.5080213903743316
      - task:
          name: Analogy Questions (SAT)
          type: multiple-choice-qa
        dataset:
          name: SAT
          args: relbert/analogy_questions
          type: analogy-questions
        metrics:
          - name: Accuracy
            type: accuracy
            value: 0.5192878338278932
      - task:
          name: Analogy Questions (BATS)
          type: multiple-choice-qa
        dataset:
          name: BATS
          args: relbert/analogy_questions
          type: analogy-questions
        metrics:
          - name: Accuracy
            type: accuracy
            value: 0.6653696498054474
      - task:
          name: Analogy Questions (Google)
          type: multiple-choice-qa
        dataset:
          name: Google
          args: relbert/analogy_questions
          type: analogy-questions
        metrics:
          - name: Accuracy
            type: accuracy
            value: 0.84
      - task:
          name: Analogy Questions (U2)
          type: multiple-choice-qa
        dataset:
          name: U2
          args: relbert/analogy_questions
          type: analogy-questions
        metrics:
          - name: Accuracy
            type: accuracy
            value: 0.45614035087719296
      - task:
          name: Analogy Questions (U4)
          type: multiple-choice-qa
        dataset:
          name: U4
          args: relbert/analogy_questions
          type: analogy-questions
        metrics:
          - name: Accuracy
            type: accuracy
            value: 0.5393518518518519
      - task:
          name: Lexical Relation Classification (BLESS)
          type: classification
        dataset:
          name: BLESS
          args: relbert/lexical_relation_classification
          type: relation-classification
        metrics:
          - name: F1
            type: f1
            value: 0.9132138014163026
          - name: F1 (macro)
            type: f1_macro
            value: 0.9101733559621606
      - task:
          name: Lexical Relation Classification (CogALexV)
          type: classification
        dataset:
          name: CogALexV
          args: relbert/lexical_relation_classification
          type: relation-classification
        metrics:
          - name: F1
            type: f1
            value: 0.8502347417840377
          - name: F1 (macro)
            type: f1_macro
            value: 0.6852576593859314
      - task:
          name: Lexical Relation Classification (EVALution)
          type: classification
        dataset:
          name: BLESS
          args: relbert/lexical_relation_classification
          type: relation-classification
        metrics:
          - name: F1
            type: f1
            value: 0.6852654387865655
          - name: F1 (macro)
            type: f1_macro
            value: 0.6694360423727916
      - task:
          name: Lexical Relation Classification (K&H+N)
          type: classification
        dataset:
          name: K&H+N
          args: relbert/lexical_relation_classification
          type: relation-classification
        metrics:
          - name: F1
            type: f1
            value: 0.9604228976838005
          - name: F1 (macro)
            type: f1_macro
            value: 0.8826948107609662
      - task:
          name: Lexical Relation Classification (ROOT09)
          type: classification
        dataset:
          name: ROOT09
          args: relbert/lexical_relation_classification
          type: relation-classification
        metrics:
          - name: F1
            type: f1
            value: 0.9022250078345346
          - name: F1 (macro)
            type: f1_macro
            value: 0.9002463330589072

relbert/roberta-large-semeval2012-mask-prompt-b-nce-classification

RelBERT fine-tuned from roberta-large on
relbert/semeval2012_relational_similarity. 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.5080213903743316
    • Accuracy on SAT: 0.5192878338278932
    • Accuracy on BATS: 0.6653696498054474
    • Accuracy on U2: 0.45614035087719296
    • Accuracy on U4: 0.5393518518518519
    • Accuracy on Google: 0.84
  • Lexical Relation Classification (dataset, full result):
    • Micro F1 score on BLESS: 0.9132138014163026
    • Micro F1 score on CogALexV: 0.8502347417840377
    • Micro F1 score on EVALution: 0.6852654387865655
    • Micro F1 score on K&H+N: 0.9604228976838005
    • Micro F1 score on ROOT09: 0.9022250078345346
  • Relation Mapping (dataset, full result):
    • Accuracy on Relation Mapping: 0.7908730158730158

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/roberta-large-semeval2012-mask-prompt-b-nce-classification")
vector = model.get_embedding(['Tokyo', 'Japan'])  # shape of (1024, )

Training hyperparameters

The following hyperparameters were used during training:

  • model: roberta-large
  • max_length: 64
  • mode: mask
  • data: relbert/semeval2012_relational_similarity
  • split: train
  • data_eval: relbert/conceptnet_high_confidence
  • split_eval: full
  • template_mode: manual
  • template: Today, I finally discovered the relation between and : is 's
  • loss_function: nce_logout
  • classification_loss: True
  • temperature_nce_constant: 0.05
  • temperature_nce_rank: {'min': 0.01, 'max': 0.05, 'type': 'linear'}
  • epoch: 27
  • batch: 128
  • lr: 5e-06
  • lr_decay: False
  • lr_warmup: 1
  • weight_decay: 0
  • random_seed: 0
  • exclude_relation: None
  • exclude_relation_eval: None
  • n_sample: 640
  • gradient_accumulation: 8

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",
}