forked from Data-Science-2Like/SCOPE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLICENSE
More file actions
40 lines (30 loc) · 2.54 KB
/
LICENSE
File metadata and controls
40 lines (30 loc) · 2.54 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
This project includes code from other repositories and authors, which are licensed as follows:
The code in the Cite-worthiness Detection folder is taken partially from the repository https://github.com/Data-Science-2Like/cite-worth-with-section-info.
Hence, the python files in this directory are licensed under
the MIT (https://opensource.org/licenses/MIT) and the CC BY-NC-SA 4.0 (https://creativecommons.org/licenses/by-nc-sa/4.0/) License
as stated in the respective files.
The code in the Prefetcher folder comes from the repository https://github.com/Data-Science-2Like/aae-rec-with-section-info/blob/main/LICENSE.md
and is therefore licensed under the GPL-3.0 (https://www.gnu.org/licenses/gpl-3.0.de.html) License by Lukas Galke and Simon Birkholz, respectively.
The Reranker folder contains the implementation of the BM25 algorithm by the gensim library https://github.com/RaRe-Technologies/gensim/blob/e889fa3d45a406cabbc7e180fa9a8ee3f76ac6f0/gensim/summarization/bm25.py
and implementations of the BM25 Reranker and SciBERT Reranker are taken from the repository https://github.com/Data-Science-2Like/SciBERT-Reranker.
Hence, the python files in this directory are licensed under
the GNU LGPL v2.1 (http://www.gnu.org/licenses/lgpl.html) and the CC BY-NC-SA 4.0 (https://creativecommons.org/licenses/by-nc-sa/4.0/) License
as stated in the respective files.
If not stated differently above or in the beginning of the python files, the code is licensed under the MIT License:
MIT License
Copyright (c) 2022 Carolin Schindler, Danial Podjavorsek and Simon Birkholz
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.