gabrielaltay
commited on
Commit
•
5241e61
1
Parent(s):
7920afe
just use strings for license and language, unit test in bigbio repo can check correctness
Browse files- bigbiohub.py +0 -5
- licenses.py +0 -318
- licenses_data.py +0 -452
- scitail.py +2 -5
bigbiohub.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
from dataclasses import dataclass
|
2 |
from enum import Enum
|
3 |
import datasets
|
4 |
-
from datasets.utils.metadata import known_language_codes
|
5 |
from types import SimpleNamespace
|
6 |
|
7 |
|
@@ -19,10 +18,6 @@ class BigBioConfig(datasets.BuilderConfig):
|
|
19 |
subset_id: str = None
|
20 |
|
21 |
|
22 |
-
langs_dict = {k.replace("-", "_").upper(): v for k, v in known_language_codes.items()}
|
23 |
-
Lang = Enum("Lang", langs_dict)
|
24 |
-
|
25 |
-
|
26 |
class Tasks(Enum):
|
27 |
NAMED_ENTITY_RECOGNITION = "NER"
|
28 |
NAMED_ENTITY_DISAMBIGUATION = "NED"
|
|
|
1 |
from dataclasses import dataclass
|
2 |
from enum import Enum
|
3 |
import datasets
|
|
|
4 |
from types import SimpleNamespace
|
5 |
|
6 |
|
|
|
18 |
subset_id: str = None
|
19 |
|
20 |
|
|
|
|
|
|
|
|
|
21 |
class Tasks(Enum):
|
22 |
NAMED_ENTITY_RECOGNITION = "NER"
|
23 |
NAMED_ENTITY_DISAMBIGUATION = "NED"
|
licenses.py
DELETED
@@ -1,318 +0,0 @@
|
|
1 |
-
from dataclasses import dataclass
|
2 |
-
from typing import Dict, Optional
|
3 |
-
from types import SimpleNamespace
|
4 |
-
from .licenses_data import LICENSES_DATA
|
5 |
-
|
6 |
-
|
7 |
-
@dataclass
|
8 |
-
class License:
|
9 |
-
"""
|
10 |
-
Base class from which all licenses inherit
|
11 |
-
|
12 |
-
Args:
|
13 |
-
name: License title
|
14 |
-
text: Accompanying information of the license
|
15 |
-
link: URL to License
|
16 |
-
version: Current version of license
|
17 |
-
provenance: Organization providing authorization, if possible
|
18 |
-
"""
|
19 |
-
|
20 |
-
name: Optional[str] = None
|
21 |
-
short_name: Optional[str] = None
|
22 |
-
text: Optional[str] = None
|
23 |
-
link: Optional[str] = None
|
24 |
-
version: Optional[str] = None
|
25 |
-
provenance: Optional[str] = None
|
26 |
-
|
27 |
-
@property
|
28 |
-
def is_share_alike(self):
|
29 |
-
"""
|
30 |
-
Is Share-alike?
|
31 |
-
"""
|
32 |
-
# NOTE: leave here has an example of license properties
|
33 |
-
raise NotImplementedError()
|
34 |
-
|
35 |
-
|
36 |
-
@dataclass
|
37 |
-
class CustomLicense(License):
|
38 |
-
"""
|
39 |
-
This class is for custom licenses.
|
40 |
-
It must contain the text of the license.
|
41 |
-
Optionally its version and a link to the license webpage.
|
42 |
-
"""
|
43 |
-
|
44 |
-
def __post_init__(self):
|
45 |
-
if self.name is None:
|
46 |
-
self.name = "Custom license"
|
47 |
-
|
48 |
-
if self.text is None and self.link is None:
|
49 |
-
raise ValueError(
|
50 |
-
"A `CustomLicense` must provide either (a) the license text or (b) the license link!"
|
51 |
-
)
|
52 |
-
|
53 |
-
|
54 |
-
_GENIA_PROJECT_LICENSE_TEXT = """
|
55 |
-
GENIA Project License for Annotated Corpora
|
56 |
-
|
57 |
-
1. Copyright of abstracts
|
58 |
-
|
59 |
-
Any abstracts contained in this corpus are from PubMed(R), a database
|
60 |
-
of the U.S. National Library of Medicine (NLM).
|
61 |
-
|
62 |
-
NLM data are produced by a U.S. Government agency and include works of
|
63 |
-
the United States Government that are not protected by U.S. copyright
|
64 |
-
law but may be protected by non-US copyright law, as well as abstracts
|
65 |
-
originating from publications that may be protected by U.S. copyright
|
66 |
-
law.
|
67 |
-
|
68 |
-
NLM assumes no responsibility or liability associated with use of
|
69 |
-
copyrighted material, including transmitting, reproducing,
|
70 |
-
redistributing, or making commercial use of the data. NLM does not
|
71 |
-
provide legal advice regarding copyright, fair use, or other aspects
|
72 |
-
of intellectual property rights. Persons contemplating any type of
|
73 |
-
transmission or reproduction of copyrighted material such as abstracts
|
74 |
-
are advised to consult legal counsel.
|
75 |
-
|
76 |
-
2. Copyright of full texts
|
77 |
-
|
78 |
-
Any full texts contained in this corpus are from the PMC Open Access
|
79 |
-
Subset of PubMed Central (PMC), the U.S. National Institutes of Health
|
80 |
-
(NIH) free digital archive of biomedical and life sciences journal
|
81 |
-
literature.
|
82 |
-
|
83 |
-
Articles in the PMC Open Access Subset are protected by copyright, but
|
84 |
-
are made available under a Creative Commons or similar license that
|
85 |
-
generally allows more liberal redistribution and reuse than a
|
86 |
-
traditional copyrighted work. Please refer to the license of each
|
87 |
-
article for specific license terms.
|
88 |
-
|
89 |
-
3. Copyright of annotations
|
90 |
-
|
91 |
-
The copyrights of annotations created in the GENIA Project of Tsujii
|
92 |
-
Laboratory, University of Tokyo, belong in their entirety to the GENIA
|
93 |
-
Project.
|
94 |
-
|
95 |
-
4. Licence terms
|
96 |
-
|
97 |
-
Use and distribution of abstracts drawn from PubMed is subject to the
|
98 |
-
PubMed(R) license terms as stated in Clause 1.
|
99 |
-
|
100 |
-
Use and distribution of full texts is subject to the license terms
|
101 |
-
applying to each publication.
|
102 |
-
|
103 |
-
Annotations created by the GENIA Project are licensed under the
|
104 |
-
Creative Commons Attribution 3.0 Unported License. To view a copy of
|
105 |
-
this license, visit http://creativecommons.org/licenses/by/3.0/ or
|
106 |
-
send a letter to Creative Commons, 444 Castro Street, Suite 900,
|
107 |
-
Mountain View, California, 94041, USA.
|
108 |
-
|
109 |
-
Annotations created by the GENIA Project must be attributed as
|
110 |
-
detailed in Clause 5.
|
111 |
-
|
112 |
-
5. Attribution
|
113 |
-
|
114 |
-
The GENIA Project was founded and led by prof. Jun'ichi Tsujii and
|
115 |
-
the project and its annotation efforts have been coordinated in part
|
116 |
-
by Nigel Collier, Yuka Tateisi, Sang-Zoo Lee, Tomoko Ohta, Jin-Dong
|
117 |
-
Kim, and Sampo Pyysalo.
|
118 |
-
|
119 |
-
For a complete list of the GENIA Project members and contributors,
|
120 |
-
please refer to http://www.geniaproject.org.
|
121 |
-
|
122 |
-
The GENIA Project has been supported by Grant-in-Aid for Scientific
|
123 |
-
Research on Priority Area "Genome Information Science" (MEXT, Japan),
|
124 |
-
Grant-in-Aid for Scientific Research on Priority Area "Systems
|
125 |
-
Genomics" (MEXT, Japan), Core Research for Evolutional Science &
|
126 |
-
Technology (CREST) "Information Mobility Project" (JST, Japan),
|
127 |
-
Solution Oriented Research for Science and Technology (SORST) (JST,
|
128 |
-
Japan), Genome Network Project (MEXT, Japan) and Grant-in-Aid for
|
129 |
-
Specially Promoted Research (MEXT, Japan).
|
130 |
-
|
131 |
-
Annotations covered by this license must be attributed as follows:
|
132 |
-
|
133 |
-
Corpus annotations (c) GENIA Project
|
134 |
-
|
135 |
-
Distributions including annotations covered by this licence must
|
136 |
-
include this license text and Attribution section.
|
137 |
-
|
138 |
-
6. References
|
139 |
-
|
140 |
-
- GENIA Project : http://www.geniaproject.org
|
141 |
-
- PubMed : http://www.pubmed.gov/
|
142 |
-
- NLM (United States National Library of Medicine) : http://www.nlm.nih.gov/
|
143 |
-
- MEXT (Ministry of Education, Culture, Sports, Science and Technology) : http://www.mext.go.jp/
|
144 |
-
- JST (Japan Science and Technology Agency) : http://www.jst.go.jp
|
145 |
-
"""
|
146 |
-
|
147 |
-
GeniaProjectLicense = CustomLicense(
|
148 |
-
name="GENIA Project License for Annotated Corpora",
|
149 |
-
# NOTE: just in case the link will break
|
150 |
-
text=_GENIA_PROJECT_LICENSE_TEXT,
|
151 |
-
link="http://www.nactem.ac.uk/meta-knowledge/GENIA_license.txt",
|
152 |
-
)
|
153 |
-
|
154 |
-
|
155 |
-
_NLM_LICENSE_TEXT = """
|
156 |
-
National Library of Medicine Terms and Conditions
|
157 |
-
|
158 |
-
INTRODUCTION
|
159 |
-
|
160 |
-
Downloading data from the National Library of Medicine FTP servers indicates your acceptance of the following Terms and Conditions: No charges, usage fees or royalties are paid to NLM for this data.
|
161 |
-
|
162 |
-
GENERAL TERMS AND CONDITIONS
|
163 |
-
|
164 |
-
Users of the data agree to:
|
165 |
-
acknowledge NLM as the source of the data by including the phrase "Courtesy of the U.S. National Library of Medicine" in a clear and conspicuous manner,
|
166 |
-
properly use registration and/or trademark symbols when referring to NLM products, and
|
167 |
-
not indicate or imply that NLM has endorsed its products/services/applications.
|
168 |
-
|
169 |
-
Users who republish or redistribute the data (services, products or raw data) agree to:
|
170 |
-
maintain the most current version of all distributed data, or
|
171 |
-
make known in a clear and conspicuous manner that the products/services/applications do not reflect the most current/accurate data available from NLM.
|
172 |
-
|
173 |
-
These data are produced with a reasonable standard of care, but NLM makes no warranties express or implied, including no warranty of merchantability or fitness for particular purpose, regarding the accuracy or completeness of the data. Users agree to hold NLM and the U.S. Government harmless from any liability resulting from errors in the data. NLM disclaims any liability for any consequences due to use, misuse, or interpretation of information contained or not contained in the data.
|
174 |
-
|
175 |
-
NLM does not provide legal advice regarding copyright, fair use, or other aspects of intellectual property rights. See the NLM Copyright page.
|
176 |
-
|
177 |
-
NLM reserves the right to change the type and format of its machine-readable data. NLM will take reasonable steps to inform users of any changes to the format of the data before the data are distributed via the announcement section or subscription to email and RSS updates.
|
178 |
-
|
179 |
-
"""
|
180 |
-
NLMLicense = CustomLicense(
|
181 |
-
name="National Library of Medicine Terms and Conditions",
|
182 |
-
# NOTE: just in case the link will break
|
183 |
-
text=_NLM_LICENSE_TEXT,
|
184 |
-
link="https://www.nlm.nih.gov/databases/download/terms_and_conditions.html",
|
185 |
-
)
|
186 |
-
|
187 |
-
|
188 |
-
_PHYSIONET_LICENSE_1p5_TEXT = """
|
189 |
-
The PhysioNet Credentialed Health Data License
|
190 |
-
Version 1.5.0
|
191 |
-
|
192 |
-
Copyright (c) 2022 MIT Laboratory for Computational Physiology
|
193 |
-
|
194 |
-
The MIT Laboratory for Computational Physiology (MIT-LCP) wishes to make data available for research and educational purposes to qualified requestors, but only if the data are used and protected in accordance with the terms and conditions stated in this License.
|
195 |
-
|
196 |
-
It is hereby agreed between the data requestor, hereinafter referred to as the "LICENSEE", and MIT-LCP, that:
|
197 |
-
|
198 |
-
The LICENSEE will not attempt to identify any individual or institution referenced in PhysioNet restricted data.
|
199 |
-
The LICENSEE will exercise all reasonable and prudent care to avoid disclosure of the identity of any individual or institution referenced in PhysioNet restricted data in any publication or other communication.
|
200 |
-
The LICENSEE will not share access to PhysioNet restricted data with anyone else.
|
201 |
-
The LICENSEE will exercise all reasonable and prudent care to maintain the physical and electronic security of PhysioNet restricted data.
|
202 |
-
If the LICENSEE finds information within PhysioNet restricted data that he or she believes might permit identification of any individual or institution, the LICENSEE will report the location of this information promptly by email to PHI-report@physionet.org, citing the location of the specific information in question.
|
203 |
-
The LICENSEE will use the data for the sole purpose of lawful use in scientific research and no other.
|
204 |
-
The LICENSEE will be responsible for ensuring that he or she maintains up to date certification in human research subject protection and HIPAA regulations.
|
205 |
-
The LICENSEE agrees to contribute code associated with publications arising from this data to a repository that is open to the research community.
|
206 |
-
This agreement may be terminated by either party at any time, but the LICENSEE's obligations with respect to PhysioNet data shall continue after termination.
|
207 |
-
|
208 |
-
THE DATA ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE DATA OR THE USE OR OTHER DEALINGS IN THE DATA.
|
209 |
-
"""
|
210 |
-
PhysioNetLicense1p5 = CustomLicense(
|
211 |
-
name="PhysioNet Credentialed Health Data License",
|
212 |
-
version="1.5",
|
213 |
-
link="https://physionet.org/content/mimiciv/view-license/0.4/",
|
214 |
-
# NOTE: just in case the link will break
|
215 |
-
text=_PHYSIONET_LICENSE_1p5_TEXT,
|
216 |
-
)
|
217 |
-
|
218 |
-
|
219 |
-
UMLSLicense = CustomLicense(
|
220 |
-
name="UMLS - Metathesaurus License Agreement",
|
221 |
-
link="https://www.nlm.nih.gov/research/umls/knowledge_sources/metathesaurus/release/license_agreement.html",
|
222 |
-
)
|
223 |
-
|
224 |
-
_NCBI_LICENSE_TEXT = """
|
225 |
-
===========================================================================
|
226 |
-
*
|
227 |
-
* PUBLIC DOMAIN NOTICE
|
228 |
-
* National Center for Biotechnology Information
|
229 |
-
*
|
230 |
-
* This software/database is a "United States Government Work" under the
|
231 |
-
* terms of the United States Copyright Act. It was written as part of
|
232 |
-
* the author's official duties as a United States Government employee and
|
233 |
-
* thus cannot be copyrighted. This software/database is freely available
|
234 |
-
* to the public for use. The National Library of Medicine and the U.S.
|
235 |
-
* Government have not placed any restriction on its use or reproduction.
|
236 |
-
*
|
237 |
-
* Although all reasonable efforts have been taken to ensure the accuracy
|
238 |
-
* and reliability of the software and data, the NLM and the U.S.
|
239 |
-
* Government do not and cannot warrant the performance or results that
|
240 |
-
* may be obtained by using this software or data. The NLM and the U.S.
|
241 |
-
* Government disclaim all warranties, express or implied, including
|
242 |
-
* warranties of performance, merchantability or fitness for any particular
|
243 |
-
* purpose.
|
244 |
-
*
|
245 |
-
* Please cite the author in any work or product based on this material.
|
246 |
-
*
|
247 |
-
*
|
248 |
-
===========================================================================
|
249 |
-
"""
|
250 |
-
NCBILicense = CustomLicense(
|
251 |
-
name="National Center fr Biotechnology Information PUBLIC DOMAIN NOTICE",
|
252 |
-
link="https://github.com/openbiocorpora/genetag/blob/master/LICENSE",
|
253 |
-
# NOTE: just in case link will break
|
254 |
-
text=_NCBI_LICENSE_TEXT,
|
255 |
-
)
|
256 |
-
|
257 |
-
PublicDomainMark_1p0 = CustomLicense(
|
258 |
-
name="Public Domain Mark 1.0",
|
259 |
-
text="""This work has been identified as being free of known restrictions under copyright law,
|
260 |
-
including all related and neighboring rights.
|
261 |
-
""",
|
262 |
-
link="https://creativecommons.org/publicdomain/mark/1.0/",
|
263 |
-
)
|
264 |
-
|
265 |
-
|
266 |
-
def _get_variable_name(k: str) -> str:
|
267 |
-
|
268 |
-
return k.replace("-", "_").upper().replace(".", "p").replace("+", "plus")
|
269 |
-
|
270 |
-
|
271 |
-
def load_json_licenses() -> Dict[str, str]:
|
272 |
-
"""
|
273 |
-
Load all licenses from JSON file.
|
274 |
-
Amend names to be valid variable names
|
275 |
-
"""
|
276 |
-
|
277 |
-
# shamelessly compied from:
|
278 |
-
# https://github.com/huggingface/datasets/blob/master/src/datasets/utils/metadata.py
|
279 |
-
licenses = {_get_variable_name(k): v for k, v in LICENSES_DATA.items()}
|
280 |
-
|
281 |
-
licenses["ZERO_BSD"] = licenses.pop("0BSD")
|
282 |
-
|
283 |
-
return licenses
|
284 |
-
|
285 |
-
|
286 |
-
def load_licenses() -> Dict[str, License]:
|
287 |
-
"""
|
288 |
-
Load `_LICENSES` dict:
|
289 |
-
- key (str) : license name
|
290 |
-
- value (License) : instance of license class
|
291 |
-
"""
|
292 |
-
|
293 |
-
json_licenses = load_json_licenses()
|
294 |
-
|
295 |
-
json_licenses.update({"DUA": "Data User Agreement"})
|
296 |
-
|
297 |
-
licenses_kwargs = {k: {"name": v} for k, v in json_licenses.items()}
|
298 |
-
|
299 |
-
licenses = {k: License(**kwargs) for k, kwargs in licenses_kwargs.items()}
|
300 |
-
|
301 |
-
custom_licenses = {
|
302 |
-
"PUBLIC_DOMAIN_MARK_1p0": PublicDomainMark_1p0,
|
303 |
-
"GENIA_PROJECT_LICENSE": GeniaProjectLicense,
|
304 |
-
"NLM_LICENSE": NLMLicense,
|
305 |
-
"NCBI_LICENSE": NCBILicense,
|
306 |
-
"UMLS_LICENSE": UMLSLicense,
|
307 |
-
"PHYSIONET_LICENSE_1p5": PhysioNetLicense1p5,
|
308 |
-
}
|
309 |
-
|
310 |
-
licenses.update(custom_licenses)
|
311 |
-
for k, v in licenses.items():
|
312 |
-
v.short_name = k
|
313 |
-
|
314 |
-
return licenses
|
315 |
-
|
316 |
-
|
317 |
-
_LICENSES = load_licenses()
|
318 |
-
Licenses = SimpleNamespace(**_LICENSES)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
licenses_data.py
DELETED
@@ -1,452 +0,0 @@
|
|
1 |
-
LICENSES_DATA = {
|
2 |
-
"other": "Other license",
|
3 |
-
"unknown": "License information unavailable",
|
4 |
-
"0bsd": "BSD Zero Clause License",
|
5 |
-
"aal": "Attribution Assurance License",
|
6 |
-
"abstyles": "Abstyles License",
|
7 |
-
"adobe-2006": "Adobe Systems Incorporated Source Code License Agreement",
|
8 |
-
"adobe-glyph": "Adobe Glyph List License",
|
9 |
-
"adsl": "Amazon Digital Services License",
|
10 |
-
"afl-1.1": "Academic Free License v1.1",
|
11 |
-
"afl-1.2": "Academic Free License v1.2",
|
12 |
-
"afl-2.0": "Academic Free License v2.0",
|
13 |
-
"afl-2.1": "Academic Free License v2.1",
|
14 |
-
"afl-3.0": "Academic Free License v3.0",
|
15 |
-
"afmparse": "Afmparse License",
|
16 |
-
"agpl-1.0": "Affero General Public License v1.0",
|
17 |
-
"agpl-1.0-only": "Affero General Public License v1.0 only",
|
18 |
-
"agpl-1.0-or-later": "Affero General Public License v1.0 or later",
|
19 |
-
"agpl-3.0": "GNU Affero General Public License v3.0",
|
20 |
-
"agpl-3.0-only": "GNU Affero General Public License v3.0 only",
|
21 |
-
"agpl-3.0-or-later": "GNU Affero General Public License v3.0 or later",
|
22 |
-
"aladdin": "Aladdin Free Public License",
|
23 |
-
"amdplpa": "AMD's plpa_map.c License",
|
24 |
-
"aml": "Apple MIT License",
|
25 |
-
"ampas": "Academy of Motion Picture Arts and Sciences BSD",
|
26 |
-
"antlr-pd": "ANTLR Software Rights Notice",
|
27 |
-
"antlr-pd-fallback": "ANTLR Software Rights Notice with license fallback",
|
28 |
-
"apache-1.0": "Apache License 1.0",
|
29 |
-
"apache-1.1": "Apache License 1.1",
|
30 |
-
"apache-2.0": "Apache License 2.0",
|
31 |
-
"apafml": "Adobe Postscript AFM License",
|
32 |
-
"apl-1.0": "Adaptive Public License 1.0",
|
33 |
-
"apsl-1.0": "Apple Public Source License 1.0",
|
34 |
-
"apsl-1.1": "Apple Public Source License 1.1",
|
35 |
-
"apsl-1.2": "Apple Public Source License 1.2",
|
36 |
-
"apsl-2.0": "Apple Public Source License 2.0",
|
37 |
-
"artistic-1.0": "Artistic License 1.0",
|
38 |
-
"artistic-1.0-cl8": "Artistic License 1.0 w/clause 8",
|
39 |
-
"artistic-1.0-perl": "Artistic License 1.0 (Perl)",
|
40 |
-
"artistic-2.0": "Artistic License 2.0",
|
41 |
-
"bahyph": "Bahyph License",
|
42 |
-
"barr": "Barr License",
|
43 |
-
"beerware": "Beerware License",
|
44 |
-
"bittorrent-1.0": "BitTorrent Open Source License v1.0",
|
45 |
-
"bittorrent-1.1": "BitTorrent Open Source License v1.1",
|
46 |
-
"blessing": "SQLite Blessing",
|
47 |
-
"blueoak-1.0.0": "Blue Oak Model License 1.0.0",
|
48 |
-
"borceux": "Borceux license",
|
49 |
-
"bsd-1-clause": "BSD 1-Clause License",
|
50 |
-
"bsd-2-clause": 'BSD 2-Clause "Simplified" License',
|
51 |
-
"bsd-2-clause-freebsd": "BSD 2-Clause FreeBSD License",
|
52 |
-
"bsd-2-clause-netbsd": "BSD 2-Clause NetBSD License",
|
53 |
-
"bsd-2-clause-patent": "BSD-2-Clause Plus Patent License",
|
54 |
-
"bsd-2-clause-views": "BSD 2-Clause with views sentence",
|
55 |
-
"bsd-3-clause": 'BSD 3-Clause "New" or "Revised" License',
|
56 |
-
"bsd-3-clause-attribution": "BSD with attribution",
|
57 |
-
"bsd-3-clause-clear": "BSD 3-Clause Clear License",
|
58 |
-
"bsd-3-clause-lbnl": "Lawrence Berkeley National Labs BSD variant license",
|
59 |
-
"bsd-3-clause-no-nuclear-license": "BSD 3-Clause No Nuclear License",
|
60 |
-
"bsd-3-clause-no-nuclear-license-2014": "BSD 3-Clause No Nuclear License 2014",
|
61 |
-
"bsd-3-clause-no-nuclear-warranty": "BSD 3-Clause No Nuclear Warranty",
|
62 |
-
"bsd-3-clause-open-mpi": "BSD 3-Clause Open MPI variant",
|
63 |
-
"bsd-4-clause": 'BSD 4-Clause "Original" or "Old" License',
|
64 |
-
"bsd-4-clause-uc": "BSD-4-Clause (University of California-Specific)",
|
65 |
-
"bsd-protection": "BSD Protection License",
|
66 |
-
"bsd-source-code": "BSD Source Code Attribution",
|
67 |
-
"bsl-1.0": "Boost Software License 1.0",
|
68 |
-
"busl-1.1": "Business Source License 1.1",
|
69 |
-
"bzip2-1.0.5": "bzip2 and libbzip2 License v1.0.5",
|
70 |
-
"bzip2-1.0.6": "bzip2 and libbzip2 License v1.0.6",
|
71 |
-
"cal-1.0": "Cryptographic Autonomy License 1.0",
|
72 |
-
"cal-1.0-combined-work-exception": "Cryptographic Autonomy License 1.0 (Combined Work Exception)",
|
73 |
-
"caldera": "Caldera License",
|
74 |
-
"catosl-1.1": "Computer Associates Trusted Open Source License 1.1",
|
75 |
-
"cc-by-1.0": "Creative Commons Attribution 1.0 Generic",
|
76 |
-
"cc-by-2.0": "Creative Commons Attribution 2.0 Generic",
|
77 |
-
"cc-by-2.5": "Creative Commons Attribution 2.5 Generic",
|
78 |
-
"cc-by-3.0": "Creative Commons Attribution 3.0 Unported",
|
79 |
-
"cc-by-3.0-at": "Creative Commons Attribution 3.0 Austria",
|
80 |
-
"cc-by-3.0-us": "Creative Commons Attribution 3.0 United States",
|
81 |
-
"cc-by-4.0": "Creative Commons Attribution 4.0 International",
|
82 |
-
"cc-by-nc-1.0": "Creative Commons Attribution Non Commercial 1.0 Generic",
|
83 |
-
"cc-by-nc-2.0": "Creative Commons Attribution Non Commercial 2.0 Generic",
|
84 |
-
"cc-by-nc-2.5": "Creative Commons Attribution Non Commercial 2.5 Generic",
|
85 |
-
"cc-by-nc-3.0": "Creative Commons Attribution Non Commercial 3.0 Unported",
|
86 |
-
"cc-by-nc-4.0": "Creative Commons Attribution Non Commercial 4.0 International",
|
87 |
-
"cc-by-nc-nd-1.0": "Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic",
|
88 |
-
"cc-by-nc-nd-2.0": "Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic",
|
89 |
-
"cc-by-nc-nd-2.5": "Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic",
|
90 |
-
"cc-by-nc-nd-3.0": "Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported",
|
91 |
-
"cc-by-nc-nd-3.0-igo": "Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO",
|
92 |
-
"cc-by-nc-nd-4.0": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International",
|
93 |
-
"cc-by-nc-sa-1.0": "Creative Commons Attribution Non Commercial Share Alike 1.0 Generic",
|
94 |
-
"cc-by-nc-sa-2.0": "Creative Commons Attribution Non Commercial Share Alike 2.0 Generic",
|
95 |
-
"cc-by-nc-sa-2.5": "Creative Commons Attribution Non Commercial Share Alike 2.5 Generic",
|
96 |
-
"cc-by-nc-sa-3.0": "Creative Commons Attribution Non Commercial Share Alike 3.0 Unported",
|
97 |
-
"cc-by-nc-sa-4.0": "Creative Commons Attribution Non Commercial Share Alike 4.0 International",
|
98 |
-
"cc-by-nd-1.0": "Creative Commons Attribution No Derivatives 1.0 Generic",
|
99 |
-
"cc-by-nd-2.0": "Creative Commons Attribution No Derivatives 2.0 Generic",
|
100 |
-
"cc-by-nd-2.5": "Creative Commons Attribution No Derivatives 2.5 Generic",
|
101 |
-
"cc-by-nd-3.0": "Creative Commons Attribution No Derivatives 3.0 Unported",
|
102 |
-
"cc-by-nd-4.0": "Creative Commons Attribution No Derivatives 4.0 International",
|
103 |
-
"cc-by-sa-1.0": "Creative Commons Attribution Share Alike 1.0 Generic",
|
104 |
-
"cc-by-sa-2.0": "Creative Commons Attribution Share Alike 2.0 Generic",
|
105 |
-
"cc-by-sa-2.0-uk": "Creative Commons Attribution Share Alike 2.0 England and Wales",
|
106 |
-
"cc-by-sa-2.5": "Creative Commons Attribution Share Alike 2.5 Generic",
|
107 |
-
"cc-by-sa-3.0": "Creative Commons Attribution Share Alike 3.0 Unported",
|
108 |
-
"cc-by-sa-3.0-at": "Creative Commons Attribution-Share Alike 3.0 Austria",
|
109 |
-
"cc-by-sa-4.0": "Creative Commons Attribution Share Alike 4.0 International",
|
110 |
-
"cc-pddc": "Creative Commons Public Domain Dedication and Certification",
|
111 |
-
"cc0-1.0": "Creative Commons Zero v1.0 Universal",
|
112 |
-
"cddl-1.0": "Common Development and Distribution License 1.0",
|
113 |
-
"cddl-1.1": "Common Development and Distribution License 1.1",
|
114 |
-
"cdla-permissive-1.0": "Community Data License Agreement Permissive 1.0",
|
115 |
-
"cdla-sharing-1.0": "Community Data License Agreement Sharing 1.0",
|
116 |
-
"cecill-1.0": "CeCILL Free Software License Agreement v1.0",
|
117 |
-
"cecill-1.1": "CeCILL Free Software License Agreement v1.1",
|
118 |
-
"cecill-2.0": "CeCILL Free Software License Agreement v2.0",
|
119 |
-
"cecill-2.1": "CeCILL Free Software License Agreement v2.1",
|
120 |
-
"cecill-b": "CeCILL-B Free Software License Agreement",
|
121 |
-
"cecill-c": "CeCILL-C Free Software License Agreement",
|
122 |
-
"cern-ohl-1.1": "CERN Open Hardware Licence v1.1",
|
123 |
-
"cern-ohl-1.2": "CERN Open Hardware Licence v1.2",
|
124 |
-
"cern-ohl-p-2.0": "CERN Open Hardware Licence Version 2 - Permissive",
|
125 |
-
"cern-ohl-s-2.0": "CERN Open Hardware Licence Version 2 - Strongly Reciprocal",
|
126 |
-
"cern-ohl-w-2.0": "CERN Open Hardware Licence Version 2 - Weakly Reciprocal",
|
127 |
-
"clartistic": "Clarified Artistic License",
|
128 |
-
"cnri-jython": "CNRI Jython License",
|
129 |
-
"cnri-python": "CNRI Python License",
|
130 |
-
"cnri-python-gpl-compatible": "CNRI Python Open Source GPL Compatible License Agreement",
|
131 |
-
"condor-1.1": "Condor Public License v1.1",
|
132 |
-
"copyleft-next-0.3.0": "copyleft-next 0.3.0",
|
133 |
-
"copyleft-next-0.3.1": "copyleft-next 0.3.1",
|
134 |
-
"cpal-1.0": "Common Public Attribution License 1.0",
|
135 |
-
"cpl-1.0": "Common Public License 1.0",
|
136 |
-
"cpol-1.02": "Code Project Open License 1.02",
|
137 |
-
"crossword": "Crossword License",
|
138 |
-
"crystalstacker": "CrystalStacker License",
|
139 |
-
"cua-opl-1.0": "CUA Office Public License v1.0",
|
140 |
-
"cube": "Cube License",
|
141 |
-
"curl": "curl License",
|
142 |
-
"d-fsl-1.0": "Deutsche Freie Software Lizenz",
|
143 |
-
"diffmark": "diffmark license",
|
144 |
-
"doc": "DOC License",
|
145 |
-
"dotseqn": "Dotseqn License",
|
146 |
-
"dsdp": "DSDP License",
|
147 |
-
"dvipdfm": "dvipdfm License",
|
148 |
-
"ecl-1.0": "Educational Community License v1.0",
|
149 |
-
"ecl-2.0": "Educational Community License v2.0",
|
150 |
-
"ecos-2.0": "eCos license version 2.0",
|
151 |
-
"efl-1.0": "Eiffel Forum License v1.0",
|
152 |
-
"efl-2.0": "Eiffel Forum License v2.0",
|
153 |
-
"egenix": "eGenix.com Public License 1.1.0",
|
154 |
-
"entessa": "Entessa Public License v1.0",
|
155 |
-
"epics": "EPICS Open License",
|
156 |
-
"epl-1.0": "Eclipse Public License 1.0",
|
157 |
-
"epl-2.0": "Eclipse Public License 2.0",
|
158 |
-
"erlpl-1.1": "Erlang Public License v1.1",
|
159 |
-
"etalab-2.0": "Etalab Open License 2.0",
|
160 |
-
"eudatagrid": "EU DataGrid Software License",
|
161 |
-
"eupl-1.0": "European Union Public License 1.0",
|
162 |
-
"eupl-1.1": "European Union Public License 1.1",
|
163 |
-
"eupl-1.2": "European Union Public License 1.2",
|
164 |
-
"eurosym": "Eurosym License",
|
165 |
-
"fair": "Fair License",
|
166 |
-
"frameworx-1.0": "Frameworx Open License 1.0",
|
167 |
-
"freeimage": "FreeImage Public License v1.0",
|
168 |
-
"fsfap": "FSF All Permissive License",
|
169 |
-
"fsful": "FSF Unlimited License",
|
170 |
-
"fsfullr": "FSF Unlimited License (with License Retention)",
|
171 |
-
"ftl": "Freetype Project License",
|
172 |
-
"gfdl-1.1": "GNU Free Documentation License v1.1",
|
173 |
-
"gfdl-1.1-invariants-only": "GNU Free Documentation License v1.1 only - invariants",
|
174 |
-
"gfdl-1.1-invariants-or-later": "GNU Free Documentation License v1.1 or later - invariants",
|
175 |
-
"gfdl-1.1-no-invariants-only": "GNU Free Documentation License v1.1 only - no invariants",
|
176 |
-
"gfdl-1.1-no-invariants-or-later": "GNU Free Documentation License v1.1 or later - no invariants",
|
177 |
-
"gfdl-1.1-only": "GNU Free Documentation License v1.1 only",
|
178 |
-
"gfdl-1.1-or-later": "GNU Free Documentation License v1.1 or later",
|
179 |
-
"gfdl-1.2": "GNU Free Documentation License v1.2",
|
180 |
-
"gfdl-1.2-invariants-only": "GNU Free Documentation License v1.2 only - invariants",
|
181 |
-
"gfdl-1.2-invariants-or-later": "GNU Free Documentation License v1.2 or later - invariants",
|
182 |
-
"gfdl-1.2-no-invariants-only": "GNU Free Documentation License v1.2 only - no invariants",
|
183 |
-
"gfdl-1.2-no-invariants-or-later": "GNU Free Documentation License v1.2 or later - no invariants",
|
184 |
-
"gfdl-1.2-only": "GNU Free Documentation License v1.2 only",
|
185 |
-
"gfdl-1.2-or-later": "GNU Free Documentation License v1.2 or later",
|
186 |
-
"gfdl-1.3": "GNU Free Documentation License v1.3",
|
187 |
-
"gfdl-1.3-invariants-only": "GNU Free Documentation License v1.3 only - invariants",
|
188 |
-
"gfdl-1.3-invariants-or-later": "GNU Free Documentation License v1.3 or later - invariants",
|
189 |
-
"gfdl-1.3-no-invariants-only": "GNU Free Documentation License v1.3 only - no invariants",
|
190 |
-
"gfdl-1.3-no-invariants-or-later": "GNU Free Documentation License v1.3 or later - no invariants",
|
191 |
-
"gfdl-1.3-only": "GNU Free Documentation License v1.3 only",
|
192 |
-
"gfdl-1.3-or-later": "GNU Free Documentation License v1.3 or later",
|
193 |
-
"giftware": "Giftware License",
|
194 |
-
"gl2ps": "GL2PS License",
|
195 |
-
"glide": "3dfx Glide License",
|
196 |
-
"glulxe": "Glulxe License",
|
197 |
-
"glwtpl": "Good Luck With That Public License",
|
198 |
-
"gnuplot": "gnuplot License",
|
199 |
-
"gpl-1.0": "GNU General Public License v1.0 only",
|
200 |
-
"gpl-1.0+": "GNU General Public License v1.0 or later",
|
201 |
-
"gpl-1.0-only": "GNU General Public License v1.0 only",
|
202 |
-
"gpl-1.0-or-later": "GNU General Public License v1.0 or later",
|
203 |
-
"gpl-2.0": "GNU General Public License v2.0 only",
|
204 |
-
"gpl-2.0+": "GNU General Public License v2.0 or later",
|
205 |
-
"gpl-2.0-only": "GNU General Public License v2.0 only",
|
206 |
-
"gpl-2.0-or-later": "GNU General Public License v2.0 or later",
|
207 |
-
"gpl-2.0-with-autoconf-exception": "GNU General Public License v2.0 w/Autoconf exception",
|
208 |
-
"gpl-2.0-with-bison-exception": "GNU General Public License v2.0 w/Bison exception",
|
209 |
-
"gpl-2.0-with-classpath-exception": "GNU General Public License v2.0 w/Classpath exception",
|
210 |
-
"gpl-2.0-with-font-exception": "GNU General Public License v2.0 w/Font exception",
|
211 |
-
"gpl-2.0-with-gcc-exception": "GNU General Public License v2.0 w/GCC Runtime Library exception",
|
212 |
-
"gpl-3.0": "GNU General Public License v3.0 only",
|
213 |
-
"gpl-3.0+": "GNU General Public License v3.0 or later",
|
214 |
-
"gpl-3.0-only": "GNU General Public License v3.0 only",
|
215 |
-
"gpl-3.0-or-later": "GNU General Public License v3.0 or later",
|
216 |
-
"gpl-3.0-with-autoconf-exception": "GNU General Public License v3.0 w/Autoconf exception",
|
217 |
-
"gpl-3.0-with-gcc-exception": "GNU General Public License v3.0 w/GCC Runtime Library exception",
|
218 |
-
"gsoap-1.3b": "gSOAP Public License v1.3b",
|
219 |
-
"haskellreport": "Haskell Language Report License",
|
220 |
-
"hippocratic-2.1": "Hippocratic License 2.1",
|
221 |
-
"hpnd": "Historical Permission Notice and Disclaimer",
|
222 |
-
"hpnd-sell-variant": "Historical Permission Notice and Disclaimer - sell variant",
|
223 |
-
"htmltidy": "HTML Tidy License",
|
224 |
-
"ibm-pibs": "IBM PowerPC Initialization and Boot Software",
|
225 |
-
"icu": "ICU License",
|
226 |
-
"ijg": "Independent JPEG Group License",
|
227 |
-
"imagemagick": "ImageMagick License",
|
228 |
-
"imatix": "iMatix Standard Function Library Agreement",
|
229 |
-
"imlib2": "Imlib2 License",
|
230 |
-
"info-zip": "Info-ZIP License",
|
231 |
-
"intel": "Intel Open Source License",
|
232 |
-
"intel-acpi": "Intel ACPI Software License Agreement",
|
233 |
-
"interbase-1.0": "Interbase Public License v1.0",
|
234 |
-
"ipa": "IPA Font License",
|
235 |
-
"ipl-1.0": "IBM Public License v1.0",
|
236 |
-
"isc": "ISC License",
|
237 |
-
"jasper-2.0": "JasPer License",
|
238 |
-
"jpnic": "Japan Network Information Center License",
|
239 |
-
"json": "JSON License",
|
240 |
-
"lal-1.2": "Licence Art Libre 1.2",
|
241 |
-
"lal-1.3": "Licence Art Libre 1.3",
|
242 |
-
"latex2e": "Latex2e License",
|
243 |
-
"leptonica": "Leptonica License",
|
244 |
-
"lgpl-2.0": "GNU Library General Public License v2 only",
|
245 |
-
"lgpl-2.0+": "GNU Library General Public License v2 or later",
|
246 |
-
"lgpl-2.0-only": "GNU Library General Public License v2 only",
|
247 |
-
"lgpl-2.0-or-later": "GNU Library General Public License v2 or later",
|
248 |
-
"lgpl-2.1": "GNU Lesser General Public License v2.1 only",
|
249 |
-
"lgpl-2.1+": "GNU Library General Public License v2.1 or later",
|
250 |
-
"lgpl-2.1-only": "GNU Lesser General Public License v2.1 only",
|
251 |
-
"lgpl-2.1-or-later": "GNU Lesser General Public License v2.1 or later",
|
252 |
-
"lgpl-3.0": "GNU Lesser General Public License v3.0 only",
|
253 |
-
"lgpl-3.0+": "GNU Lesser General Public License v3.0 or later",
|
254 |
-
"lgpl-3.0-only": "GNU Lesser General Public License v3.0 only",
|
255 |
-
"lgpl-3.0-or-later": "GNU Lesser General Public License v3.0 or later",
|
256 |
-
"lgpllr": "Lesser General Public License For Linguistic Resources",
|
257 |
-
"libpng": "libpng License",
|
258 |
-
"libpng-2.0": "PNG Reference Library version 2",
|
259 |
-
"libselinux-1.0": "libselinux public domain notice",
|
260 |
-
"libtiff": "libtiff License",
|
261 |
-
"liliq-p-1.1": "Licence Libre du Qu\u00e9bec \u2013 Permissive version 1.1",
|
262 |
-
"liliq-r-1.1": "Licence Libre du Qu\u00e9bec \u2013 R\u00e9ciprocit\u00e9 version 1.1",
|
263 |
-
"liliq-rplus-1.1": "Licence Libre du Qu\u00e9bec \u2013 R\u00e9ciprocit\u00e9 forte version 1.1",
|
264 |
-
"linux-openib": "Linux Kernel Variant of OpenIB.org license",
|
265 |
-
"lpl-1.0": "Lucent Public License Version 1.0",
|
266 |
-
"lpl-1.02": "Lucent Public License v1.02",
|
267 |
-
"lppl-1.0": "LaTeX Project Public License v1.0",
|
268 |
-
"lppl-1.1": "LaTeX Project Public License v1.1",
|
269 |
-
"lppl-1.2": "LaTeX Project Public License v1.2",
|
270 |
-
"lppl-1.3a": "LaTeX Project Public License v1.3a",
|
271 |
-
"lppl-1.3c": "LaTeX Project Public License v1.3c",
|
272 |
-
"makeindex": "MakeIndex License",
|
273 |
-
"miros": "The MirOS Licence",
|
274 |
-
"mit": "MIT License",
|
275 |
-
"mit-0": "MIT No Attribution",
|
276 |
-
"mit-advertising": "Enlightenment License (e16)",
|
277 |
-
"mit-cmu": "CMU License",
|
278 |
-
"mit-enna": "enna License",
|
279 |
-
"mit-feh": "feh License",
|
280 |
-
"mit-open-group": "MIT Open Group variant",
|
281 |
-
"mitnfa": "MIT +no-false-attribs license",
|
282 |
-
"motosoto": "Motosoto License",
|
283 |
-
"mpich2": "mpich2 License",
|
284 |
-
"mpl-1.0": "Mozilla Public License 1.0",
|
285 |
-
"mpl-1.1": "Mozilla Public License 1.1",
|
286 |
-
"mpl-2.0": "Mozilla Public License 2.0",
|
287 |
-
"mpl-2.0-no-copyleft-exception": "Mozilla Public License 2.0 (no copyleft exception)",
|
288 |
-
"ms-pl": "Microsoft Public License",
|
289 |
-
"ms-rl": "Microsoft Reciprocal License",
|
290 |
-
"mtll": "Matrix Template Library License",
|
291 |
-
"mulanpsl-1.0": "Mulan Permissive Software License, Version 1",
|
292 |
-
"mulanpsl-2.0": "Mulan Permissive Software License, Version 2",
|
293 |
-
"multics": "Multics License",
|
294 |
-
"mup": "Mup License",
|
295 |
-
"nasa-1.3": "NASA Open Source Agreement 1.3",
|
296 |
-
"naumen": "Naumen Public License",
|
297 |
-
"nbpl-1.0": "Net Boolean Public License v1",
|
298 |
-
"ncgl-uk-2.0": "Non-Commercial Government Licence",
|
299 |
-
"ncsa": "University of Illinois/NCSA Open Source License",
|
300 |
-
"net-snmp": "Net-SNMP License",
|
301 |
-
"netcdf": "NetCDF license",
|
302 |
-
"newsletr": "Newsletr License",
|
303 |
-
"ngpl": "Nethack General Public License",
|
304 |
-
"nist-pd": "NIST Public Domain Notice",
|
305 |
-
"nist-pd-fallback": "NIST Public Domain Notice with license fallback",
|
306 |
-
"nlod-1.0": "Norwegian Licence for Open Government Data",
|
307 |
-
"nlpl": "No Limit Public License",
|
308 |
-
"nokia": "Nokia Open Source License",
|
309 |
-
"nosl": "Netizen Open Source License",
|
310 |
-
"noweb": "Noweb License",
|
311 |
-
"npl-1.0": "Netscape Public License v1.0",
|
312 |
-
"npl-1.1": "Netscape Public License v1.1",
|
313 |
-
"nposl-3.0": "Non-Profit Open Software License 3.0",
|
314 |
-
"nrl": "NRL License",
|
315 |
-
"ntp": "NTP License",
|
316 |
-
"ntp-0": "NTP No Attribution",
|
317 |
-
"nunit": "Nunit License",
|
318 |
-
"o-uda-1.0": "Open Use of Data Agreement v1.0",
|
319 |
-
"occt-pl": "Open CASCADE Technology Public License",
|
320 |
-
"oclc-2.0": "OCLC Research Public License 2.0",
|
321 |
-
"odbl-1.0": "ODC Open Database License v1.0",
|
322 |
-
"odc-by-1.0": "Open Data Commons Attribution License v1.0",
|
323 |
-
"ofl-1.0": "SIL Open Font License 1.0",
|
324 |
-
"ofl-1.0-no-rfn": "SIL Open Font License 1.0 with no Reserved Font Name",
|
325 |
-
"ofl-1.0-rfn": "SIL Open Font License 1.0 with Reserved Font Name",
|
326 |
-
"ofl-1.1": "SIL Open Font License 1.1",
|
327 |
-
"ofl-1.1-no-rfn": "SIL Open Font License 1.1 with no Reserved Font Name",
|
328 |
-
"ofl-1.1-rfn": "SIL Open Font License 1.1 with Reserved Font Name",
|
329 |
-
"ogc-1.0": "OGC Software License, Version 1.0",
|
330 |
-
"ogl-canada-2.0": "Open Government Licence - Canada",
|
331 |
-
"ogl-uk-1.0": "Open Government Licence v1.0",
|
332 |
-
"ogl-uk-2.0": "Open Government Licence v2.0",
|
333 |
-
"ogl-uk-3.0": "Open Government Licence v3.0",
|
334 |
-
"ogtsl": "Open Group Test Suite License",
|
335 |
-
"oldap-1.1": "Open LDAP Public License v1.1",
|
336 |
-
"oldap-1.2": "Open LDAP Public License v1.2",
|
337 |
-
"oldap-1.3": "Open LDAP Public License v1.3",
|
338 |
-
"oldap-1.4": "Open LDAP Public License v1.4",
|
339 |
-
"oldap-2.0": "Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B)",
|
340 |
-
"oldap-2.0.1": "Open LDAP Public License v2.0.1",
|
341 |
-
"oldap-2.1": "Open LDAP Public License v2.1",
|
342 |
-
"oldap-2.2": "Open LDAP Public License v2.2",
|
343 |
-
"oldap-2.2.1": "Open LDAP Public License v2.2.1",
|
344 |
-
"oldap-2.2.2": "Open LDAP Public License 2.2.2",
|
345 |
-
"oldap-2.3": "Open LDAP Public License v2.3",
|
346 |
-
"oldap-2.4": "Open LDAP Public License v2.4",
|
347 |
-
"oldap-2.5": "Open LDAP Public License v2.5",
|
348 |
-
"oldap-2.6": "Open LDAP Public License v2.6",
|
349 |
-
"oldap-2.7": "Open LDAP Public License v2.7",
|
350 |
-
"oldap-2.8": "Open LDAP Public License v2.8",
|
351 |
-
"oml": "Open Market License",
|
352 |
-
"openssl": "OpenSSL License",
|
353 |
-
"opl-1.0": "Open Public License v1.0",
|
354 |
-
"oset-pl-2.1": "OSET Public License version 2.1",
|
355 |
-
"osl-1.0": "Open Software License 1.0",
|
356 |
-
"osl-1.1": "Open Software License 1.1",
|
357 |
-
"osl-2.0": "Open Software License 2.0",
|
358 |
-
"osl-2.1": "Open Software License 2.1",
|
359 |
-
"osl-3.0": "Open Software License 3.0",
|
360 |
-
"parity-6.0.0": "The Parity Public License 6.0.0",
|
361 |
-
"parity-7.0.0": "The Parity Public License 7.0.0",
|
362 |
-
"pddl-1.0": "ODC Public Domain Dedication & License 1.0",
|
363 |
-
"php-3.0": "PHP License v3.0",
|
364 |
-
"php-3.01": "PHP License v3.01",
|
365 |
-
"plexus": "Plexus Classworlds License",
|
366 |
-
"polyform-noncommercial-1.0.0": "PolyForm Noncommercial License 1.0.0",
|
367 |
-
"polyform-small-business-1.0.0": "PolyForm Small Business License 1.0.0",
|
368 |
-
"postgresql": "PostgreSQL License",
|
369 |
-
"psf-2.0": "Python Software Foundation License 2.0",
|
370 |
-
"psfrag": "psfrag License",
|
371 |
-
"psutils": "psutils License",
|
372 |
-
"python-2.0": "Python License 2.0",
|
373 |
-
"qhull": "Qhull License",
|
374 |
-
"qpl-1.0": "Q Public License 1.0",
|
375 |
-
"rdisc": "Rdisc License",
|
376 |
-
"rhecos-1.1": "Red Hat eCos Public License v1.1",
|
377 |
-
"rpl-1.1": "Reciprocal Public License 1.1",
|
378 |
-
"rpl-1.5": "Reciprocal Public License 1.5",
|
379 |
-
"rpsl-1.0": "RealNetworks Public Source License v1.0",
|
380 |
-
"rsa-md": "RSA Message-Digest License",
|
381 |
-
"rscpl": "Ricoh Source Code Public License",
|
382 |
-
"ruby": "Ruby License",
|
383 |
-
"sax-pd": "Sax Public Domain Notice",
|
384 |
-
"saxpath": "Saxpath License",
|
385 |
-
"scea": "SCEA Shared Source License",
|
386 |
-
"sendmail": "Sendmail License",
|
387 |
-
"sendmail-8.23": "Sendmail License 8.23",
|
388 |
-
"sgi-b-1.0": "SGI Free Software License B v1.0",
|
389 |
-
"sgi-b-1.1": "SGI Free Software License B v1.1",
|
390 |
-
"sgi-b-2.0": "SGI Free Software License B v2.0",
|
391 |
-
"shl-0.5": "Solderpad Hardware License v0.5",
|
392 |
-
"shl-0.51": "Solderpad Hardware License, Version 0.51",
|
393 |
-
"simpl-2.0": "Simple Public License 2.0",
|
394 |
-
"sissl": "Sun Industry Standards Source License v1.1",
|
395 |
-
"sissl-1.2": "Sun Industry Standards Source License v1.2",
|
396 |
-
"sleepycat": "Sleepycat License",
|
397 |
-
"smlnj": "Standard ML of New Jersey License",
|
398 |
-
"smppl": "Secure Messaging Protocol Public License",
|
399 |
-
"snia": "SNIA Public License 1.1",
|
400 |
-
"spencer-86": "Spencer License 86",
|
401 |
-
"spencer-94": "Spencer License 94",
|
402 |
-
"spencer-99": "Spencer License 99",
|
403 |
-
"spl-1.0": "Sun Public License v1.0",
|
404 |
-
"ssh-openssh": "SSH OpenSSH license",
|
405 |
-
"ssh-short": "SSH short notice",
|
406 |
-
"sspl-1.0": "Server Side Public License, v 1",
|
407 |
-
"standardml-nj": "Standard ML of New Jersey License",
|
408 |
-
"sugarcrm-1.1.3": "SugarCRM Public License v1.1.3",
|
409 |
-
"swl": "Scheme Widget Library (SWL) Software License Agreement",
|
410 |
-
"tapr-ohl-1.0": "TAPR Open Hardware License v1.0",
|
411 |
-
"tcl": "TCL/TK License",
|
412 |
-
"tcp-wrappers": "TCP Wrappers License",
|
413 |
-
"tmate": "TMate Open Source License",
|
414 |
-
"torque-1.1": "TORQUE v2.5+ Software License v1.1",
|
415 |
-
"tosl": "Trusster Open Source License",
|
416 |
-
"tu-berlin-1.0": "Technische Universitaet Berlin License 1.0",
|
417 |
-
"tu-berlin-2.0": "Technische Universitaet Berlin License 2.0",
|
418 |
-
"ucl-1.0": "Upstream Compatibility License v1.0",
|
419 |
-
"unicode-dfs-2015": "Unicode License Agreement - Data Files and Software (2015)",
|
420 |
-
"unicode-dfs-2016": "Unicode License Agreement - Data Files and Software (2016)",
|
421 |
-
"unicode-tou": "Unicode Terms of Use",
|
422 |
-
"unlicense": "The Unlicense",
|
423 |
-
"upl-1.0": "Universal Permissive License v1.0",
|
424 |
-
"vim": "Vim License",
|
425 |
-
"vostrom": "VOSTROM Public License for Open Source",
|
426 |
-
"vsl-1.0": "Vovida Software License v1.0",
|
427 |
-
"w3c": "W3C Software Notice and License (2002-12-31)",
|
428 |
-
"w3c-19980720": "W3C Software Notice and License (1998-07-20)",
|
429 |
-
"w3c-20150513": "W3C Software Notice and Document License (2015-05-13)",
|
430 |
-
"watcom-1.0": "Sybase Open Watcom Public License 1.0",
|
431 |
-
"wsuipa": "Wsuipa License",
|
432 |
-
"wtfpl": "Do What The F*ck You Want To Public License",
|
433 |
-
"wxwindows": "wxWindows Library License",
|
434 |
-
"x11": "X11 License",
|
435 |
-
"xerox": "Xerox License",
|
436 |
-
"xfree86-1.1": "XFree86 License 1.1",
|
437 |
-
"xinetd": "xinetd License",
|
438 |
-
"xnet": "X.Net License",
|
439 |
-
"xpp": "XPP License",
|
440 |
-
"xskat": "XSkat License",
|
441 |
-
"ypl-1.0": "Yahoo! Public License v1.0",
|
442 |
-
"ypl-1.1": "Yahoo! Public License v1.1",
|
443 |
-
"zed": "Zed License",
|
444 |
-
"zend-2.0": "Zend License v2.0",
|
445 |
-
"zimbra-1.3": "Zimbra Public License v1.3",
|
446 |
-
"zimbra-1.4": "Zimbra Public License v1.4",
|
447 |
-
"zlib": "zlib License",
|
448 |
-
"zlib-acknowledgement": "zlib/libpng License with Acknowledgement",
|
449 |
-
"zpl-1.1": "Zope Public License 1.1",
|
450 |
-
"zpl-2.0": "Zope Public License 2.0",
|
451 |
-
"zpl-2.1": "Zope Public License 2.1",
|
452 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
scitail.py
CHANGED
@@ -27,15 +27,12 @@ import os
|
|
27 |
import datasets
|
28 |
import pandas as pd
|
29 |
|
30 |
-
from .licenses_data import LICENSES_DATA
|
31 |
from .bigbiohub import entailment_features
|
32 |
from .bigbiohub import BigBioConfig
|
33 |
-
from .bigbiohub import Lang
|
34 |
-
from .licenses import Licenses
|
35 |
from .bigbiohub import Tasks
|
36 |
|
37 |
|
38 |
-
_LANGUAGES = [
|
39 |
_PUBMED = False
|
40 |
_LOCAL = False
|
41 |
_CITATION = """\
|
@@ -62,7 +59,7 @@ entails label and 16,925 examples with neutral label.
|
|
62 |
|
63 |
_HOMEPAGE = "https://allenai.org/data/scitail"
|
64 |
|
65 |
-
_LICENSE =
|
66 |
|
67 |
_URLS = {
|
68 |
_DATASETNAME: "https://ai2-public-datasets.s3.amazonaws.com/scitail/SciTailV1.1.zip",
|
|
|
27 |
import datasets
|
28 |
import pandas as pd
|
29 |
|
|
|
30 |
from .bigbiohub import entailment_features
|
31 |
from .bigbiohub import BigBioConfig
|
|
|
|
|
32 |
from .bigbiohub import Tasks
|
33 |
|
34 |
|
35 |
+
_LANGUAGES = ["English"]
|
36 |
_PUBMED = False
|
37 |
_LOCAL = False
|
38 |
_CITATION = """\
|
|
|
59 |
|
60 |
_HOMEPAGE = "https://allenai.org/data/scitail"
|
61 |
|
62 |
+
_LICENSE = "APACHE_2p0"
|
63 |
|
64 |
_URLS = {
|
65 |
_DATASETNAME: "https://ai2-public-datasets.s3.amazonaws.com/scitail/SciTailV1.1.zip",
|