asahi417's picture
model update
2b65621
metadata
datasets:
  - relbert/semeval2012_relational_similarity_v6
model-index:
  - name: >-
      relbert/relbert-roberta-base-semeval2012-v6-average-prompt-b-nce-2-child-prototypical
    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.7526984126984126
      - 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.39037433155080214
      - 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.40059347181008903
      - 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.48526959421901056
      - 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.544
      - 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.44298245614035087
      - 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.4675925925925926
      - 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.8857917733915925
          - name: F1 (macro)
            type: f1_macro
            value: 0.8738206104201592
      - 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.7866197183098591
          - name: F1 (macro)
            type: f1_macro
            value: 0.5206895111405141
      - 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.5866738894907909
          - name: F1 (macro)
            type: f1_macro
            value: 0.5627937428119613
      - 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.9581971204006399
          - name: F1 (macro)
            type: f1_macro
            value: 0.87313513119675
      - 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.8574114697586963
          - name: F1 (macro)
            type: f1_macro
            value: 0.8562330887103827

relbert/relbert-roberta-base-semeval2012-v6-average-prompt-b-nce-2-child-prototypical

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.39037433155080214
    • Accuracy on SAT: 0.40059347181008903
    • Accuracy on BATS: 0.48526959421901056
    • Accuracy on U2: 0.44298245614035087
    • Accuracy on U4: 0.4675925925925926
    • Accuracy on Google: 0.544
  • Lexical Relation Classification (dataset, full result):
    • Micro F1 score on BLESS: 0.8857917733915925
    • Micro F1 score on CogALexV: 0.7866197183098591
    • Micro F1 score on EVALution: 0.5866738894907909
    • Micro F1 score on K&H+N: 0.9581971204006399
    • Micro F1 score on ROOT09: 0.8574114697586963
  • Relation Mapping (dataset, full result):
    • Accuracy on Relation Mapping: 0.7526984126984126

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-b-nce-2-child-prototypical")
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: nce_logout
  • classification_loss: False
  • temperature_nce_constant: 0.05
  • temperature_nce_rank: {'min': 0.01, 'max': 0.05, 'type': 'linear'}
  • epoch: 9
  • batch: 128
  • lr: 5e-06
  • lr_decay: False
  • lr_warmup: 1
  • weight_decay: 0
  • random_seed: 2
  • exclude_relation: None
  • n_sample: 320
  • gradient_accumulation: 8
  • relation_level: None
  • data_level: child_prototypical

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