-
Notifications
You must be signed in to change notification settings - Fork 504
Expand file tree
/
Copy pathNOTICE
More file actions
171 lines (130 loc) · 8.69 KB
/
Copy pathNOTICE
File metadata and controls
171 lines (130 loc) · 8.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
Apache OpenNLP
Copyright 2021-2026 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
============================================================================
The snowball stemmers in
opennlp-tools/src/main/java/opennlp/tools/stemmer/snowball
were developed by Martin Porter and Richard Boulton.
The full snowball package is available from
http://snowball.tartarus.org/
============================================================================
The bundled stopword lists in
opennlp-core/opennlp-runtime/src/main/resources/opennlp/tools/stopword
are derived from Apache Lucene
(https://github.com/apache/lucene/tree/main/lucene/analysis/common/src/resources/org/apache/lucene/analysis),
which in turn distributes them under the BSD license from the Snowball project
(https://snowballstem.org/license.html). The Bulgarian list (bg.txt) is the
Lucene per-language Bulgarian stopwords file originally created by Jacques
Savoy (http://members.unine.ch/jacques.savoy/clef/index.html) and also
distributed under the BSD license. The original upstream license and
attribution headers are preserved verbatim at the top of each bundled file.
============================================================================
The Wordpiece tokenizer in opennlp-tools/main/java/opennlp/tools/tokenize
is taken from https://github.com/robrua/easy-bert licensed under
The MIT License (MIT)
Copyright (c) 2019 Rob Rua
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS 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 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
============================================================================
The SVM-based document categorizer in opennlp-ml-libsvm uses zlibsvm
(https://github.com/rzo1/zlibsvm), an object-oriented Java binding for
LIBSVM (https://www.csie.ntu.edu.tw/~cjlin/libsvm/).
zlibsvm is licensed under the Apache License, Version 2.0.
LIBSVM is licensed under the BSD 3-Clause License.
Copyright (c) 2000-2023 Chih-Chung Chang and Chih-Jen Lin
============================================================================
The spell checker in opennlp-extensions/opennlp-spellcheck is a Java
re-implementation (port) of the Symmetric Delete spelling correction
algorithm (SymSpell) by Wolf Garbe, taken from
https://github.com/wolfgarbe/SymSpell licensed under
MIT License
Copyright (c) 2018 Wolf Garbe
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS 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 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
============================================================================
This product bundles data files from the Unicode Character Database (UCD)
and the Unicode Security Mechanisms, version 17.0.0, published by Unicode,
Inc. (https://www.unicode.org/Public/).
* opennlp-core/opennlp-runtime/src/main/resources/opennlp/tools/tokenize/uax29/WordBreakProperty.txt
is the upstream WordBreakProperty-17.0.0.txt, unmodified except for the
file name.
* opennlp-core/opennlp-runtime/src/test/resources/opennlp/tools/tokenize/uax29/WordBreakTest.txt
is the upstream WordBreakTest-17.0.0.txt, unmodified except for the file
name.
* opennlp-core/opennlp-runtime/src/main/resources/opennlp/tools/util/normalizer/confusables.txt
is the upstream confusables.txt from the Unicode Security Mechanisms
(UTS #39), unmodified.
* opennlp-core/opennlp-runtime/src/main/resources/opennlp/tools/util/normalizer/CaseFolding.txt
is the upstream CaseFolding.txt (version 17.0.0) from the Unicode Character
Database (UCD), unmodified.
* opennlp-core/opennlp-runtime/src/main/resources/opennlp/tools/tokenize/uax29/ExtendedPictographic.txt
is derived from the upstream emoji-data.txt (Emoji Data for UTS #51,
version 17.0): it keeps only the lines that assign the
Extended_Pictographic property and is renamed accordingly. It is a
filtered subset; the upstream file additionally carries the Emoji,
Emoji_Presentation, Emoji_Modifier, Emoji_Modifier_Base, and
Emoji_Component properties, which are not retained.
The original Unicode copyright and license header is preserved verbatim at the
top of each bundled file. These files are distributed under the Unicode License
V3, the full text of which is reproduced in the LICENSE file accompanying this
distribution.
The project-authored annotation table
opennlp-core/opennlp-runtime/src/main/resources/opennlp/tools/util/normalizer/emoji-annotations.txt
is licensed under the Apache License 2.0, but its name values (the CLDR short
names) and its entity-type/category derivations are transcribed from the
upstream emoji-test.txt (Emoji Keyboard/Display Test Data for UTS #51,
version 17.0), distributed under the Unicode License V3 reproduced in the
LICENSE file. Its sentiment scores are original project judgments; no
third-party sentiment data set is included.
Copyright (c) 1991-2025 Unicode, Inc. All rights reserved.
============================================================================
List of third-party dependencies grouped by their license type.
Apache License, Version 2.0
* Apache Log4j API (org.apache.logging.log4j:log4j-api:2.26.1 - https://logging.apache.org/log4j/2.x/)
* Apache Log4j Core (org.apache.logging.log4j:log4j-core:2.26.1 - https://logging.apache.org/log4j/2.x/)
* Apache UIMA Base: uimaj-core (org.apache.uima:uimaj-core:3.6.1 - https://uima.apache.org)
* HPPC Collections (com.carrotsearch:hppc:0.7.2 - http://labs.carrotsearch.com/hppc.html/hppc)
* jcommander (com.beust:jcommander:1.78 - https://jcommander.org)
* SLF4J 2 Provider for Log4j API (org.apache.logging.log4j:log4j-slf4j2-impl:2.26.1 - https://logging.apache.org/log4j/2.x/)
* zlibsvm-api (de.hs-heilbronn.mi:zlibsvm-api:3.0.0 - https://github.com/rzo1/zlibsvm/zlibsvm-api)
* zlibsvm-core (de.hs-heilbronn.mi:zlibsvm-core:3.0.0 - https://github.com/rzo1/zlibsvm/zlibsvm-core)
BSD 3-Clause License
* libsvm (tw.edu.ntu.csie:libsvm:3.35 - https://github.com/cjlin1/libsvm)
BSD License
* Morfologik Command Line Tools (org.carrot2:morfologik-tools:2.2.0 - http://morfologik.blogspot.com/morfologik-tools/)
* Morfologik FSA (Builder) (org.carrot2:morfologik-fsa-builders:2.2.0 - http://morfologik.blogspot.com/morfologik-fsa-builders/)
* Morfologik FSA (Traversal) (org.carrot2:morfologik-fsa:2.2.0 - http://morfologik.blogspot.com/morfologik-fsa/)
* Morfologik Stemming APIs (org.carrot2:morfologik-stemming:2.2.0 - http://morfologik.blogspot.com/morfologik-stemming/)
MIT License
* onnx-runtime (com.microsoft.onnxruntime:onnxruntime_gpu:1.27.0 - https://microsoft.github.io/onnxruntime/)
* onnx-runtime (com.microsoft.onnxruntime:onnxruntime:1.27.0 - https://microsoft.github.io/onnxruntime/)
* SLF4J API Module (org.slf4j:slf4j-api:2.0.18 - http://www.slf4j.org)
The MIT License (MIT)
* ClassGraph (io.github.classgraph:classgraph:4.8.184 - https://github.com/classgraph/classgraph)