Edit model card

Model Card for joelito/legal-xlm-roberta-large

This model is a multilingual model pretrained on legal data. It is based on XLM-R (base and large). For pretraining we used Multi Legal Pile (Niklaus et al. 2023), a multilingual dataset from various legal sources covering 24 languages.

Model Details

Model Description

  • Developed by: Joel Niklaus: huggingface; email
  • Model type: Transformer-based language model (RoBERTa)
  • Language(s) (NLP): bg, cs, da, de, el, en, es, et, fi, fr, ga, hr, hu, it, lt, lv, mt, nl, pl, pt, ro, sk, sl, sv
  • License: CC BY-SA

Uses

Direct Use and Downstream Use

You can utilize the raw model for masked language modeling since we did not perform next sentence prediction. However, its main purpose is to be fine-tuned for downstream tasks.

It's important to note that this model is primarily designed for fine-tuning on tasks that rely on the entire sentence, potentially with masked elements, to make decisions. Examples of such tasks include sequence classification, token classification, or question answering. For text generation tasks, models like GPT-2 are more suitable.

Additionally, the model is specifically trained on legal data, aiming to deliver strong performance in that domain. Its performance may vary when applied to non-legal data.

Out-of-Scope Use

For tasks such as text generation you should look at model like GPT2.

The model should not be used to intentionally create hostile or alienating environments for people. The model was not trained to be factual or true representations of people or events, and therefore using the models to generate such content is out-of-scope for the abilities of this model.

Bias, Risks, and Limitations

Significant research has explored bias and fairness issues with language models (see, e.g., Sheng et al. (2021) and Bender et al. (2021)). Predictions generated by the model may include disturbing and harmful stereotypes across protected classes; identity characteristics; and sensitive, social, and occupational groups.

Recommendations

Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model.

How to Get Started with the Model

See huggingface tutorials. For masked word prediction see this tutorial.

Training Details

This model was pretrained on Multi Legal Pile (Niklaus et al. 2023).

Our pretraining procedure includes the following key steps:

(a) Warm-starting: We initialize our models from the original XLM-R checkpoints (base and large) of Conneau et al. (2019) to benefit from a well-trained base.

(b) Tokenization: We train a new tokenizer of 128K BPEs to cover legal language better. However, we reuse the original XLM-R embeddings for lexically overlapping tokens and use random embeddings for the rest.

(c) Pretraining: We continue pretraining on Multi Legal Pile with batches of 512 samples for an additional 1M/500K steps for the base/large model. We use warm-up steps, a linearly increasing learning rate, and cosine decay scheduling. During the warm-up phase, only the embeddings are updated, and a higher masking rate and percentage of predictions based on masked tokens are used compared to Devlin et al. (2019).

(d) Sentence Sampling: We employ a sentence sampler with exponential smoothing to handle disparate token proportions across cantons and languages, preserving per-canton and language capacity.

(e) Mixed Cased Models: Our models cover both upper- and lowercase letters, similar to recently developed large PLMs.

(f) Long Context Training: To account for long contexts in legal documents, we train the base-size multilingual model on long contexts with windowed attention. This variant, named Legal-Swiss-LF-base, uses a 15% masking probability, increased learning rate, and similar settings to small-context models.

Training Data

This model was pretrained on Multi Legal Pile (Niklaus et al. 2023).

Preprocessing

For further details see Niklaus et al. 2023

Training Hyperparameters

  • batche size: 512 samples
  • Number of steps: 1M/500K for the base/large model
  • Warm-up steps for the first 5% of the total training steps
  • Learning rate: (linearly increasing up to) 1e-4
  • Word masking: increased 20/30% masking rate for base/large models respectively

Evaluation

For further insights into the evaluation, we refer to the trainer state. Additional information is available in the tensorboard.

For performance on downstream tasks, such as LEXTREME (Niklaus et al. 2023) or LEXGLUE (Chalkidis et al. 2021), we refer to the results presented in Niklaus et al. (2023) 1, 2.

Model Architecture and Objective

It is a RoBERTa-based model. Run the following code to view the architecture:

from transformers import AutoModel
model = AutoModel.from_pretrained('joelito/legal-xlm-roberta-large')
print(model)

RobertaModel(
  (embeddings): RobertaEmbeddings(
    (word_embeddings): Embedding(128000, 1024, padding_idx=0)
    (position_embeddings): Embedding(514, 1024, padding_idx=0)
    (token_type_embeddings): Embedding(1, 1024)
    (LayerNorm): LayerNorm((1024,), eps=1e-05, elementwise_affine=True)
    (dropout): Dropout(p=0.1, inplace=False)
  )
  (encoder): RobertaEncoder(
    (layer): ModuleList(
      (0-23): 24 x RobertaLayer(
        (attention): RobertaAttention(
          (self): RobertaSelfAttention(
            (query): Linear(in_features=1024, out_features=1024, bias=True)
            (key): Linear(in_features=1024, out_features=1024, bias=True)
            (value): Linear(in_features=1024, out_features=1024, bias=True)
            (dropout): Dropout(p=0.1, inplace=False)
          )
          (output): RobertaSelfOutput(
            (dense): Linear(in_features=1024, out_features=1024, bias=True)
            (LayerNorm): LayerNorm((1024,), eps=1e-05, elementwise_affine=True)
            (dropout): Dropout(p=0.1, inplace=False)
          )
        )
        (intermediate): RobertaIntermediate(
          (dense): Linear(in_features=1024, out_features=4096, bias=True)
          (intermediate_act_fn): GELUActivation()
        )
        (output): RobertaOutput(
          (dense): Linear(in_features=4096, out_features=1024, bias=True)
          (LayerNorm): LayerNorm((1024,), eps=1e-05, elementwise_affine=True)
          (dropout): Dropout(p=0.1, inplace=False)
        )
      )
    )
  )
  (pooler): RobertaPooler(
    (dense): Linear(in_features=1024, out_features=1024, bias=True)
    (activation): Tanh()
  )
)

Compute Infrastructure

Google TPU.

Hardware

Google TPU v3-8

Software

pytorch, transformers.

Citation


@article{Niklaus2023MultiLegalPileA6,
  title={MultiLegalPile: A 689GB Multilingual Legal Corpus},
  author={Joel Niklaus and Veton Matoshi and Matthias Sturmer and Ilias Chalkidis and Daniel E. Ho},
  journal={ArXiv},
  year={2023},
  volume={abs/2306.02069}
}

Model Card Authors

Joel Niklaus: huggingface; email

Veton Matoshi: huggingface; email

Model Card Contact

Joel Niklaus: huggingface; email

Veton Matoshi: huggingface; email

Downloads last month
8
Safetensors
Model size
435M params
Tensor type
I64
·
F32
·

Collections including joelniklaus/legal-xlm-roberta-large