Datasets:

Languages:
English
ArXiv:
License:
kiddothe2b commited on
Commit
e62bb3d
1 Parent(s): 00ef613

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -20
README.md CHANGED
@@ -19,15 +19,9 @@ task_categories:
19
  task_ids:
20
  - masked-language-modeling
21
  pretty_name: LegalLAMA
22
- configs:
23
- - canadian_sections
24
- - cjeu_terms
25
- - contract_sections
26
- - contract_types
27
- - ecthr_articles
28
- - ecthr_terms
29
- - us_crimes
30
- - us_terms
31
  ---
32
 
33
  # Dataset Card for "LegalLAMA"
@@ -60,24 +54,35 @@ LegalLAMA is a diverse probing benchmark suite comprising 8 sub-tasks that aims
60
  | Crime Charges (US) | `us_crimes` | 4,518 | 118 | 59 |
61
  | Legal Terminology (US) | `us_terms` | 5,829 | 308 | 7 |
62
 
 
 
 
 
 
 
 
 
 
63
  ### Citation
64
 
65
  [*Ilias Chalkidis\*, Nicolas Garneau\*, Catalina E.C. Goanta, Daniel Martin Katz, and Anders Søgaard.*
66
  *LeXFiles and LegalLAMA: Facilitating English Multinational Legal Language Model Development.*
67
- *2022. In the Proceedings of the 61th Annual Meeting of the Association for Computational Linguistics. Toronto, Canada.*](https://arxiv.org/abs/2305.07507)
68
  ```
69
- @inproceedings{chalkidis-garneau-etal-2023-lexlms,
70
- title = {{LeXFiles and LegalLAMA: Facilitating English Multinational Legal Language Model Development}},
71
- author = "Chalkidis*, Ilias and
72
- Garneau*, Nicolas and
73
- Goanta, Catalina and
74
- Katz, Daniel Martin and
75
- Søgaard, Anders",
76
- booktitle = "Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics",
77
- month = june,
78
  year = "2023",
79
  address = "Toronto, Canada",
80
  publisher = "Association for Computational Linguistics",
81
- url = "https://arxiv.org/abs/2305.07507",
 
82
  }
 
83
  ```
 
19
  task_ids:
20
  - masked-language-modeling
21
  pretty_name: LegalLAMA
22
+ tags:
23
+ - legal
24
+ - law
 
 
 
 
 
 
25
  ---
26
 
27
  # Dataset Card for "LegalLAMA"
 
54
  | Crime Charges (US) | `us_crimes` | 4,518 | 118 | 59 |
55
  | Legal Terminology (US) | `us_terms` | 5,829 | 308 | 7 |
56
 
57
+ ### Usage
58
+
59
+ Load a specific sub-corpus, given the corpus alias, as presented above.
60
+
61
+ ```python
62
+ from datasets import load_dataset
63
+ dataset = load_dataset('lexlms/legal_lama', name='ecthr_terms')
64
+ ```
65
+
66
  ### Citation
67
 
68
  [*Ilias Chalkidis\*, Nicolas Garneau\*, Catalina E.C. Goanta, Daniel Martin Katz, and Anders Søgaard.*
69
  *LeXFiles and LegalLAMA: Facilitating English Multinational Legal Language Model Development.*
70
+ *2022. In the Proceedings of the 61th Annual Meeting of the Association for Computational Linguistics. Toronto, Canada.*](https://aclanthology.org/2023.acl-long.865/)
71
  ```
72
+ @inproceedings{chalkidis-etal-2023-lexfiles,
73
+ title = "{L}e{XF}iles and {L}egal{LAMA}: Facilitating {E}nglish Multinational Legal Language Model Development",
74
+ author = "Chalkidis, Ilias and
75
+ Garneau, Nicolas and
76
+ Goanta, Catalina and
77
+ Katz, Daniel and
78
+ S{\o}gaard, Anders",
79
+ booktitle = "Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
80
+ month = jul,
81
  year = "2023",
82
  address = "Toronto, Canada",
83
  publisher = "Association for Computational Linguistics",
84
+ url = "https://aclanthology.org/2023.acl-long.865",
85
+ pages = "15513--15535",
86
  }
87
+
88
  ```