parquet-converter commited on
Commit
39b3582
1 Parent(s): d0925f0

Update parquet files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. MultiLegalPile_Wikipedia_Filtered.py +0 -121
  2. README.md +0 -209
  3. data/bg_contracts_validation_0.jsonl.xz → all_contracts/partial/train/0000.parquet +2 -2
  4. data/bg_caselaw_train_0.jsonl.xz → all_contracts/partial/train/0001.parquet +2 -2
  5. data/bg_caselaw_validation_0.jsonl.xz → all_contracts/partial/train/0002.parquet +2 -2
  6. all_contracts/partial/train/0003.parquet +3 -0
  7. all_contracts/partial/train/0004.parquet +3 -0
  8. all_contracts/partial/train/0005.parquet +3 -0
  9. all_contracts/partial/train/0006.parquet +3 -0
  10. all_contracts/partial/train/0007.parquet +3 -0
  11. all_contracts/partial/train/0008.parquet +3 -0
  12. all_contracts/partial/train/0009.parquet +3 -0
  13. all_contracts/partial/validation/0000.parquet +3 -0
  14. data/bg_contracts_train_0.jsonl.xz → all_contracts/partial/validation/0001.parquet +2 -2
  15. data/bg_legislation_train_0.jsonl.xz +0 -3
  16. data/bg_legislation_validation_0.jsonl.xz +0 -3
  17. data/bg_other_validation_0.jsonl.xz +0 -3
  18. data/bg_wikipedia_train_0.jsonl.xz +0 -3
  19. data/bg_wikipedia_validation_0.jsonl.xz +0 -3
  20. data/cs_caselaw_train_0.jsonl.xz +0 -3
  21. data/cs_caselaw_validation_0.jsonl.xz +0 -3
  22. data/cs_contracts_train_0.jsonl.xz +0 -3
  23. data/cs_contracts_validation_0.jsonl.xz +0 -3
  24. data/cs_legislation_train_0.jsonl.xz +0 -3
  25. data/cs_legislation_validation_0.jsonl.xz +0 -3
  26. data/cs_other_train_0.jsonl.xz +0 -3
  27. data/cs_other_validation_0.jsonl.xz +0 -3
  28. data/cs_wikipedia_train_0.jsonl.xz +0 -3
  29. data/cs_wikipedia_validation_0.jsonl.xz +0 -3
  30. data/da_caselaw_train_0.jsonl.xz +0 -3
  31. data/da_caselaw_validation_0.jsonl.xz +0 -3
  32. data/da_contracts_train_0.jsonl.xz +0 -3
  33. data/da_contracts_validation_0.jsonl.xz +0 -3
  34. data/da_legislation_train_0.jsonl.xz +0 -3
  35. data/da_legislation_validation_0.jsonl.xz +0 -3
  36. data/da_other_train_0.jsonl.xz +0 -3
  37. data/da_other_validation_0.jsonl.xz +0 -3
  38. data/da_wikipedia_train_0.jsonl.xz +0 -3
  39. data/da_wikipedia_validation_0.jsonl.xz +0 -3
  40. data/de_caselaw_train_0.jsonl.xz +0 -3
  41. data/de_caselaw_validation_0.jsonl.xz +0 -3
  42. data/de_contracts_train_0.jsonl.xz +0 -3
  43. data/de_contracts_validation_0.jsonl.xz +0 -3
  44. data/de_legislation_train_0.jsonl.xz +0 -3
  45. data/de_legislation_validation_0.jsonl.xz +0 -3
  46. data/de_other_train_0.jsonl.xz +0 -3
  47. data/de_other_train_1.jsonl.xz +0 -3
  48. data/de_other_train_2.jsonl.xz +0 -3
  49. data/de_other_validation_0.jsonl.xz +0 -3
  50. data/de_wikipedia_train_0.jsonl.xz +0 -3
MultiLegalPile_Wikipedia_Filtered.py DELETED
@@ -1,121 +0,0 @@
1
- """MultiLegalPile Wikipedia Filtered"""
2
-
3
- import json
4
-
5
- import datasets
6
- from huggingface_hub.file_download import hf_hub_url
7
-
8
- try:
9
- import lzma as xz
10
- except ImportError:
11
- import pylzma as xz
12
-
13
- datasets.logging.set_verbosity_info()
14
- logger = datasets.logging.get_logger(__name__)
15
-
16
- _CITATION = """
17
- """
18
-
19
- _DESCRIPTION = """
20
- A filtered version of the MultiLegalPile dataset, together with wikipedia articles.
21
- """
22
-
23
- _URL = "https://huggingface.co/datasets/joelito/MultiLegalPile_Wikipedia_Filtered"
24
-
25
- _LANGUAGES = ["bg", "cs", "da", "de", "el", "en", "es", "et", "fi", "fr", "ga", "hr",
26
- "hu", "it", "lt", "lv", "mt", "nl", "pl", "pt", "ro", "sk", "sl", "sv"]
27
-
28
- _TYPES = ["caselaw", "contracts", "legislation", "other", "wikipedia"]
29
-
30
- _JURISDICTONS = ["Austria", "Belgium", "Bulgaria", "Croatia", "Czechia", "Denmark", "Estonia", "Finland",
31
- "France", "Germany", "Greece", "Hungary", "Ireland", "Italy", "Latvia", "Lithuania", "Luxembourg",
32
- "Malta", "Netherlands", "Poland", "Portugal", "Romania", "Slovakia", "Slovenia", "Spain", "Sweden",
33
- "EU", "Switzerland", "UK", "US", "Canada", "N/A"]
34
-
35
- # IMPORTANT: Increase this once larger datasets are available (en_caselaw has 11 at the moment)
36
- _HIGHEST_NUMBER_OF_SHARDS = 11
37
-
38
-
39
- class MultiLegalPileWikipediaFilteredConfig(datasets.BuilderConfig):
40
- """BuilderConfig for MultiLegalPileWikipediaFiltered."""
41
-
42
- def __init__(self, name: str, **kwargs):
43
- """BuilderConfig for MultiLegalPileWikipediaFiltered.
44
- Args:
45
- name: combination of language and type with _
46
- language: One of bg,cs,da,de,el,en,es,et,fi,fr,ga,hr,hu,it,lt,lv,mt,nl,pl,pt,ro,sk,sl,sv or all
47
- type: One of caselaw,contracts,legislation,other,wikipedia or all
48
- **kwargs: keyword arguments forwarded to super.
49
- """
50
- super(MultiLegalPileWikipediaFilteredConfig, self).__init__(**kwargs)
51
- self.name = name
52
- self.language = name.split("_")[0]
53
- self.type = name.split("_")[1]
54
-
55
-
56
- class MultiLegalPileWikipediaFiltered(datasets.GeneratorBasedBuilder):
57
- """
58
- MultiLegalPileWikipediaFiltered:
59
- A filtered dataset of multilingual legal data and wikipedias in the EU languages
60
- """
61
- BUILDER_CONFIG_CLASS = MultiLegalPileWikipediaFilteredConfig
62
-
63
- BUILDER_CONFIGS = [MultiLegalPileWikipediaFilteredConfig(f"{language}_{type}")
64
- for type in _TYPES + ["all"]
65
- for language in _LANGUAGES + ["all"]]
66
-
67
- def _info(self):
68
- return datasets.DatasetInfo(
69
- description=_DESCRIPTION,
70
- features=datasets.Features(
71
- {
72
- "language": datasets.Value("string"), # one of _LANGUAGES
73
- "type": datasets.Value("string"), # one of _TYPES
74
- "jurisdiction": datasets.Value("string"), # one of _JURISDICTONS
75
- "text": datasets.Value("string"),
76
- }
77
- ),
78
- supervised_keys=None,
79
- homepage=_URL,
80
- citation=_CITATION,
81
- )
82
-
83
- def _split_generators(self, dl_manager):
84
- def download_url(file_name):
85
- url = hf_hub_url(repo_id="joelito/MultiLegalPile_Wikipedia_Filtered",
86
- filename=f"data/{file_name}.jsonl.xz", repo_type="dataset")
87
- return dl_manager.download(url)
88
-
89
- languages = _LANGUAGES if self.config.language == "all" else [self.config.language]
90
- types = _TYPES if self.config.type == "all" else [self.config.type]
91
-
92
- split_generators = []
93
- for split in [datasets.Split.TRAIN, datasets.Split.VALIDATION]:
94
- filepaths = []
95
- for language in languages:
96
- for type in types:
97
- for shard in range(_HIGHEST_NUMBER_OF_SHARDS):
98
- try:
99
- filepaths.append(download_url(f"{language}_{type}_{split}_{shard}"))
100
- except:
101
- break # we found the last shard
102
- split_generators.append(
103
- datasets.SplitGenerator(name=split, gen_kwargs={"filepaths": filepaths})
104
- )
105
- return split_generators
106
-
107
- def _generate_examples(self, filepaths):
108
- """This function returns the examples in the raw (text) form by iterating on all the files."""
109
- id_ = 0
110
- for filepath in filepaths:
111
- logger.info("Generating examples from = %s", filepath)
112
- try:
113
- with xz.open(open(filepath, "rb"), "rt", encoding="utf-8") as f:
114
- for line in f:
115
- if line:
116
- example = json.loads(line)
117
- if example is not None and isinstance(example, dict):
118
- yield id_, example
119
- id_ += 1
120
- except Exception:
121
- logger.exception("Error while processing file %s", filepath)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
README.md DELETED
@@ -1,209 +0,0 @@
1
- ---
2
- annotations_creators:
3
- - other
4
- language_creators:
5
- - found
6
- language:
7
- - bg
8
- - cs
9
- - da
10
- - de
11
- - el
12
- - en
13
- - es
14
- - et
15
- - fi
16
- - fr
17
- - ga
18
- - hr
19
- - hu
20
- - it
21
- - lt
22
- - lv
23
- - mt
24
- - nl
25
- - pl
26
- - pt
27
- - ro
28
- - sk
29
- - sl
30
- - sv
31
- license:
32
- - cc-by-4.0
33
- multilinguality:
34
- - multilingual
35
- paperswithcode_id: null
36
- pretty_name: "MultiLegalPile_Wikipedia_Filtered: A filtered version of the MultiLegalPile dataset, together with wikipedia articles."
37
- size_categories:
38
- - 10M<n<100M
39
- source_datasets:
40
- - original
41
- task_categories:
42
- - fill-mask
43
-
44
- ---
45
-
46
- # Dataset Card for MultiLegalPile_Wikipedia_Filtered: A filtered version of the MultiLegalPile dataset, together with wikipedia articles
47
-
48
- ## Table of Contents
49
-
50
- - [Table of Contents](#table-of-contents)
51
- - [Dataset Description](#dataset-description)
52
- - [Dataset Summary](#dataset-summary)
53
- - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
54
- - [Languages](#languages)
55
- - [Dataset Structure](#dataset-structure)
56
- - [Data Instances](#data-instances)
57
- - [Data Fields](#data-fields)
58
- - [Data Splits](#data-splits)
59
- - [Dataset Creation](#dataset-creation)
60
- - [Curation Rationale](#curation-rationale)
61
- - [Source Data](#source-data)
62
- - [Annotations](#annotations)
63
- - [Personal and Sensitive Information](#personal-and-sensitive-information)
64
- - [Considerations for Using the Data](#considerations-for-using-the-data)
65
- - [Social Impact of Dataset](#social-impact-of-dataset)
66
- - [Discussion of Biases](#discussion-of-biases)
67
- - [Other Known Limitations](#other-known-limitations)
68
- - [Additional Information](#additional-information)
69
- - [Dataset Curators](#dataset-curators)
70
- - [Licensing Information](#licensing-information)
71
- - [Citation Information](#citation-information)
72
- - [Contributions](#contributions)
73
-
74
- ## Dataset Description
75
-
76
- - **Homepage:**
77
- - **Repository:**
78
- - **Paper:**
79
- - **Leaderboard:**
80
- - **Point of Contact:** [Joel Niklaus](mailto:joel.niklaus.2@bfh.ch)
81
-
82
- ### Dataset Summary
83
-
84
- The Multi_Legal_Pile is a large-scale multilingual legal dataset suited for pretraining language models.
85
- It spans over 24 languages and four legal text types.
86
-
87
- ### Supported Tasks and Leaderboards
88
-
89
- The dataset supports the tasks of fill-mask.
90
-
91
- ### Languages
92
-
93
- The following languages are supported:
94
- bg, cs, da, de, el, en, es, et, fi, fr, ga, hr, hu, it, lt, lv, mt, nl, pl, pt, ro, sk, sl, sv
95
-
96
- ## Dataset Structure
97
-
98
- It is structured in the following format: {language}_{text_type}_{shard}.jsonl.xz
99
-
100
- text_type is one of the following:
101
-
102
- - caselaw
103
- - contracts
104
- - legislation
105
- - other
106
- - wikipedia
107
-
108
-
109
- Use the dataset like this:
110
- ```python
111
- from datasets import load_dataset
112
-
113
- config = 'en_contracts' # {language}_{text_type}
114
- dataset = load_dataset('joelito/Multi_Legal_Pile', config, split='train', streaming=True)
115
- ```
116
-
117
- 'config' is a combination of language and text_type, e.g. 'en_contracts' or 'de_caselaw'.
118
- To load all the languages or all the text_types, use 'all' instead of the language or text_type (e.g., '
119
- all_legislation').
120
-
121
- ### Data Instances
122
-
123
- The file format is jsonl.xz and there is a `train` and `validation` split available.
124
- Since some configurations are very small or non-existent, they might not contain a train split or not be present at all.
125
-
126
- The complete dataset consists of five large subsets:
127
- - [Native Multi Legal Pile](https://huggingface.co/datasets/joelito/Multi_Legal_Pile)
128
- - [Eurlex Resources](https://huggingface.co/datasets/joelito/eurlex_resources)
129
- - [MC4 Legal](https://huggingface.co/datasets/joelito/mc4_legal)
130
- - [Pile of Law](https://huggingface.co/datasets/pile-of-law/pile-of-law)
131
- - [EU Wikipedias](https://huggingface.co/datasets/joelito/EU_Wikipedias)
132
-
133
- ### Data Fields
134
-
135
- [More Information Needed]
136
-
137
- ### Data Splits
138
-
139
- [More Information Needed]
140
-
141
- ## Dataset Creation
142
-
143
- This dataset has been created by combining the following datasets:
144
- Native Multi Legal Pile, Eurlex Resources, MC4 Legal, Pile of Law, EU Wikipedias.
145
- It has been filtered to remove short documents (less than 64 whitespace-separated tokens) and
146
- documents with more than 30% punctuation or numbers (see prepare_legal_data.py for more details).
147
-
148
- ### Curation Rationale
149
-
150
- [More Information Needed]
151
-
152
- ### Source Data
153
-
154
- #### Initial Data Collection and Normalization
155
-
156
- [More Information Needed]
157
-
158
- #### Who are the source language producers?
159
-
160
- [More Information Needed]
161
-
162
-
163
- ### Annotations
164
-
165
- #### Annotation process
166
-
167
- [More Information Needed]
168
-
169
- #### Who are the annotators?
170
-
171
- [More Information Needed]
172
-
173
- ### Personal and Sensitive Information
174
-
175
- [More Information Needed]
176
-
177
- ## Considerations for Using the Data
178
-
179
- ### Social Impact of Dataset
180
-
181
- [More Information Needed]
182
-
183
- ### Discussion of Biases
184
-
185
- [More Information Needed]
186
-
187
- ### Other Known Limitations
188
-
189
- [More Information Needed]
190
-
191
- ## Additional Information
192
-
193
- ### Dataset Curators
194
-
195
- [More Information Needed]
196
-
197
- ### Licensing Information
198
-
199
- [More Information Needed]
200
-
201
- ### Citation Information
202
-
203
- ```
204
- TODO add citation
205
- ```
206
-
207
- ### Contributions
208
-
209
- Thanks to [@JoelNiklaus](https://github.com/joelniklaus) for adding this dataset.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/bg_contracts_validation_0.jsonl.xz → all_contracts/partial/train/0000.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:574fa9774b042b04117876ec6ef82125282565b1279d0f81cb2081fd830a3339
3
- size 6248984
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0a3f79b7a7e30b6face4394bfa8dd6c6d4d434491ce8a3b1a6f449f41005af8
3
+ size 186012289
data/bg_caselaw_train_0.jsonl.xz → all_contracts/partial/train/0001.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ab36e996dcf6ab93c1597a1fffe575473c4c2453fd2d0fbf7a8ca868fed883e0
3
- size 178749780
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:137bcf247b6a3cd8eb4a6b482360a05033a58f5c39357bdedebb65c5faef25f1
3
+ size 202609257
data/bg_caselaw_validation_0.jsonl.xz → all_contracts/partial/train/0002.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:452f50bfddb8771acf917e21458b2d55e780960a9df2e12739ee82498925dbae
3
- size 514760
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67ec681bc19902edebd67d766dd9f027b97cd0793298310ae34852de600d4d35
3
+ size 183712913
all_contracts/partial/train/0003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c2f938b9cdded7fd404162a5a52122cdc3f26c40e0603734aa3fdb80f7de8ff
3
+ size 236146091
all_contracts/partial/train/0004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33d5c73fefa684b1f394bfab2b910fec1f01dcb909779aaea8e129f3fddff4d2
3
+ size 234074022
all_contracts/partial/train/0005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7303d1185862363155b8dd90641e3c6311a8ae27ae08304eeeeaf880a4861750
3
+ size 241944365
all_contracts/partial/train/0006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:791914ff6b8d722bfc773b6af00b2afe4cce2bf76fc35c8f0fa7936ff1576d88
3
+ size 236129112
all_contracts/partial/train/0007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25eca01adc035e7adc2c1e7b2f0bd6be7716a44983b2d7a6b648c9fd21c853cc
3
+ size 236670807
all_contracts/partial/train/0008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f462005170c5113bbcbf4ccf1e5ad8be713b462fd106b409498bddaa4deeb6a3
3
+ size 222758235
all_contracts/partial/train/0009.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b09d5ae2087863f833ccd6b1abfd5ff8c22fcbee2a3360fe6e0a5ad05bbf999d
3
+ size 123994738
all_contracts/partial/validation/0000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ca24c03922810ce33a4f7dd3304b9ee22539145ba70956dbed27506396e0480
3
+ size 191716262
data/bg_contracts_train_0.jsonl.xz → all_contracts/partial/validation/0001.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:eb9ae54562adf28be16d7f9a32abcaa102855b09890a367ec67dcdcccb2cdff6
3
- size 35842240
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e377ae23e871f8ed30925afeb8bb7c5878631d45804fb04e12e46f76683899ea
3
+ size 58392009
data/bg_legislation_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:980d0abb4b6cd4ce43bf1f1f5e00c762b74180f2fe9997e2b47edc74bab17d93
3
- size 446187384
 
 
 
 
data/bg_legislation_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:b79b67266543adfe182b8ab762c6949731237036923f1cce9b261f42af4729e6
3
- size 5236896
 
 
 
 
data/bg_other_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e0908b2175a88f27623ce4fe92a298b338e59f26ef0dcc58c7adc126d868d270
3
- size 2248160
 
 
 
 
data/bg_wikipedia_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:694ca66224a0f98dfe7024e710dac91a9191017790afdfb13d04322e84374d9b
3
- size 205364688
 
 
 
 
data/bg_wikipedia_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:0cf636f48a8452fe007000077b1683fccde93e96641994377499b56f97863a3e
3
- size 1811784
 
 
 
 
data/cs_caselaw_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:518e356dcf4a5ed95c97540b837ce52fde13fa9080a7100f20b6dd93c9832f70
3
- size 795845556
 
 
 
 
data/cs_caselaw_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:32a04de63bce0124c279190d79b64dede9e7ff569ced324e37c79723c2d3a8f2
3
- size 430452
 
 
 
 
data/cs_contracts_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:9c36bd4bf3a361886174ce8135a134ceec9ccf66d449065bbf262f0d53b59093
3
- size 26890452
 
 
 
 
data/cs_contracts_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:9f7bede565aa800af3c74fcbb2ca67a7c3ee45937ba12715399d4971430222f9
3
- size 4606696
 
 
 
 
data/cs_legislation_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:fc5a0591d1c64ffe111afbd5f0f629090a917823a8c8e686f11c8c2fafe691a3
3
- size 388087448
 
 
 
 
data/cs_legislation_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:f44d3f80059f708cd85606624a848076a9bb61e8722990c469b1d42522ea8b59
3
- size 11026632
 
 
 
 
data/cs_other_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:128be4427e23ba249145d0c7f82db0839728b44f62407804e29f8176d4f16f1e
3
- size 1610810044
 
 
 
 
data/cs_other_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:3756ef361a8cf5b8f410f69a0a5eb8ba3e4dbe2f5b486ed582247ddf55555fa8
3
- size 4676484
 
 
 
 
data/cs_wikipedia_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:5cb90b2a83e4e38036332a78c1a163c7c842d8442030178fcb76c827685b4240
3
- size 417911796
 
 
 
 
data/cs_wikipedia_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:66f61202fec9762c7d083b24660b29d3b1613141bd8dc5a099ef24df62168d21
3
- size 2669020
 
 
 
 
data/da_caselaw_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:9f7266cc06f5d9268139038353e0042fec7e02978c45da848b5e26615ddee003
3
- size 270004252
 
 
 
 
data/da_caselaw_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:b898f8f87b8c7b77f5f11edd8219b246fc3a15990565b535c8021571a0155c88
3
- size 569660
 
 
 
 
data/da_contracts_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:fe798f5c5adcbbb3b612816e98b3d432050e0a50b4a5947e668e06c0cb34b3df
3
- size 32609944
 
 
 
 
data/da_contracts_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:979eafa10a28f2c1d2fe7f82d92393cd9df5600e68a493529d6ef4837c3e253e
3
- size 2967368
 
 
 
 
data/da_legislation_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:edf9af25bf64097329bb3df2b284e686d8fb3f1291e3550620b86d3f886383c1
3
- size 765876460
 
 
 
 
data/da_legislation_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:6328ef79fc725440cf38d2df68d91576c2ff059712b33f5c4e7d6996c4f91dc7
3
- size 3289384
 
 
 
 
data/da_other_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:78da6a085a3bd4224b87c89c9f86d7ef91711c84b650f30b4ff9cbdd01284468
3
- size 3127028
 
 
 
 
data/da_other_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:05e247c7363d7301384af4883a9081d8612a4afa4614f7f0d6013f1f6c6d0a2a
3
- size 4854344
 
 
 
 
data/da_wikipedia_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:f874a2bffcf42c58d200b9d948706bcfd68eddf38011b737c4a6b0b5e80eb6d7
3
- size 137561788
 
 
 
 
data/da_wikipedia_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:fbe572ec89d576ae7807151407969268c898439a7396ae8008383317d3efeb22
3
- size 1550608
 
 
 
 
data/de_caselaw_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:969a1709dbfadc1983f0f38e78dde2cc8a083ea61b50e398e4f77ebc3a0ec193
3
- size 2542389648
 
 
 
 
data/de_caselaw_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d32617504babf6f4c242903ccfcc1fa6826882ee8c02c0c3107e7d7bd4f78102
3
- size 608896
 
 
 
 
data/de_contracts_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:a2cbb4e48bbe6a86bf73e85ca3f19ef54946bb7609bb86139b3a24d6c7c94261
3
- size 34742252
 
 
 
 
data/de_contracts_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:2185403abd9fe1f6225816507fe185de0aeb454c50cb6932c7c060b7f96ee6d8
3
- size 3159720
 
 
 
 
data/de_legislation_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:88ec0fbf69af8ee69aaa10415e4e247d2655cef98d3212d11f3a748015f78f37
3
- size 613730884
 
 
 
 
data/de_legislation_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e5c41ecb61dd67e6959aaaa28b0d06c6572f5a3187ba98629a6b15700a7e0371
3
- size 3344548
 
 
 
 
data/de_other_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:67cfdd1e5b5e725d857b5b3cf67b4de60827124cfa482f785ec86526bf13271b
3
- size 2932689216
 
 
 
 
data/de_other_train_1.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:2bd5f4c704baf621d1df64cc8eccc2de96f4fc1871b4fd7c3216e22fb0965baa
3
- size 2939305156
 
 
 
 
data/de_other_train_2.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:10d026503eed70ad9e1b649dcf4ec0b1762b259b245e7787fcb654a1c66c346d
3
- size 107941852
 
 
 
 
data/de_other_validation_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:eca3471d40ed65703fd1818692ab1d6eeb0e590090400820a58535fe96d43d1a
3
- size 3241936
 
 
 
 
data/de_wikipedia_train_0.jsonl.xz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e0dca24f9cbc70991f85f066f213a3d903d140a122572053c4748adc9852304d
3
- size 1086188000