Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
PAPADAKOS PANAGIOTIS
themis
Commits
f9b5e36b
Commit
f9b5e36b
authored
Mar 18, 2020
by
Panagiotis Papadakos
Browse files
[Preample] Updates
parent
52ac710e
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
105 additions
and
34 deletions
+105
-34
src/main/java/gr/csd/uoc/hy463/themis/config/Config.java
src/main/java/gr/csd/uoc/hy463/themis/config/Config.java
+11
-4
src/main/java/gr/csd/uoc/hy463/themis/model/S2TextualEntry.java
...in/java/gr/csd/uoc/hy463/themis/model/S2TextualEntry.java
+23
-4
src/main/java/gr/csd/uoc/hy463/themis/stemmer/Stemmer.java
src/main/java/gr/csd/uoc/hy463/themis/stemmer/Stemmer.java
+16
-6
src/main/java/gr/csd/uoc/hy463/themis/stemmer/StopWords.java
src/main/java/gr/csd/uoc/hy463/themis/stemmer/StopWords.java
+11
-4
src/main/java/gr/csd/uoc/hy463/themis/stemmer/english/EnglishStemmer.java
.../csd/uoc/hy463/themis/stemmer/english/EnglishStemmer.java
+11
-4
src/main/java/gr/csd/uoc/hy463/themis/stemmer/english/PorterStemmer.java
...r/csd/uoc/hy463/themis/stemmer/english/PorterStemmer.java
+11
-4
src/main/java/gr/csd/uoc/hy463/themis/utils/Pair.java
src/main/java/gr/csd/uoc/hy463/themis/utils/Pair.java
+11
-4
src/main/java/gr/csd/uoc/hy463/themis/utils/S2JsonEntryReader.java
...java/gr/csd/uoc/hy463/themis/utils/S2JsonEntryReader.java
+11
-4
No files found.
src/main/java/gr/csd/uoc/hy463/themis/config/Config.java
View file @
f9b5e36b
/*
* themis - A fair search engine for scientific articles
*
* Computer Science Department
* Currently over the Semantic Scholar Open Research Corpus
* http://s2-public-api-prod.us-west-2.elasticbeanstalk.com/corpus/
*
* University of Crete
* Aiming to participate in TREC 2020 Fair Ranking Track
* https://fair-trec.github.io/
*
*
http://www.csd.uoc.gr
*
Writing code during COVID-19 pandemic times :-(
*
* Project for hy463 Information Retrieval Systems course
* Collaborative work with the undergraduate/graduate students of
* Information Retrieval Systems (hy463) course
* Spring Semester 2020
* of Computer Science Department
* University of Crete
* http://www.csd.uoc.gr
* Greece
*
* LICENCE: TO BE ADDED
*
...
...
src/main/java/gr/csd/uoc/hy463/themis/model/S2TextualEntry.java
View file @
f9b5e36b
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
* themis - A fair search engine for scientific articles
*
* Currently over the Semantic Scholar Open Research Corpus
* http://s2-public-api-prod.us-west-2.elasticbeanstalk.com/corpus/
*
* Aiming to participate in TREC 2020 Fair Ranking Track
* https://fair-trec.github.io/
*
* Writing code during COVID-19 pandemic times :-(
*
* Collaborative work with the undergraduate/graduate students of
* Information Retrieval Systems (hy463) course
* Spring Semester 2020
* of Computer Science Department
* University of Crete
* http://www.csd.uoc.gr
* Greece
*
* LICENCE: TO BE ADDED
*
* Copyright 2020
*
*/
package
gr.csd.uoc.hy463.themis.model
;
...
...
@@ -9,7 +28,7 @@ import java.util.List;
/**
*
* @author
papadako
* @author
Panagiotis Papadakos <papadako at ics.forth.gr>
*/
public
class
S2TextualEntry
{
...
...
src/main/java/gr/csd/uoc/hy463/themis/stemmer/Stemmer.java
View file @
f9b5e36b
/*
*
bias goggles - Measuring the bias of web domains through the eyes of user
s
*
themis - A fair search engine for scientific article
s
*
* FOUNDATION OF RESEARCH AND TECHNOLOGY - HELLAS (FORTH-ICS)
* Currently over the Semantic Scholar Open Research Corpus
* http://s2-public-api-prod.us-west-2.elasticbeanstalk.com/corpus/
*
* INFORMATION SYSTEMS LABORATORY (ISL)
* Aiming to participate in TREC 2020 Fair Ranking Track
* https://fair-trec.github.io/
*
* http://www.ics.forth.gr/isl
* Writing code during COVID-19 pandemic times :-(
*
* Collaborative work with the undergraduate/graduate students of
* Information Retrieval Systems (hy463) course
* Spring Semester 2020
* of Computer Science Department
* University of Crete
* http://www.csd.uoc.gr
* Greece
*
* LICENCE: TO BE ADDED
*
* Copyright
2019-
2020
* Copyright 2020
*
*/
/*
!! Code from mitos web search engine !!
!! Code from mitos web search engine
, old hy463 project
!!
*/
package
gr.csd.uoc.hy463.themis.stemmer
;
...
...
src/main/java/gr/csd/uoc/hy463/themis/stemmer/StopWords.java
View file @
f9b5e36b
/*
* themis - A fair search engine for scientific articles
*
* Computer Science Department
* Currently over the Semantic Scholar Open Research Corpus
* http://s2-public-api-prod.us-west-2.elasticbeanstalk.com/corpus/
*
* University of Crete
* Aiming to participate in TREC 2020 Fair Ranking Track
* https://fair-trec.github.io/
*
*
http://www.csd.uoc.gr
*
Writing code during COVID-19 pandemic times :-(
*
* Project for hy463 Information Retrieval Systems course
* Collaborative work with the undergraduate/graduate students of
* Information Retrieval Systems (hy463) course
* Spring Semester 2020
* of Computer Science Department
* University of Crete
* http://www.csd.uoc.gr
* Greece
*
* LICENCE: TO BE ADDED
*
...
...
src/main/java/gr/csd/uoc/hy463/themis/stemmer/english/EnglishStemmer.java
View file @
f9b5e36b
/*
* themis - A fair search engine for scientific articles
*
* Computer Science Department
* Currently over the Semantic Scholar Open Research Corpus
* http://s2-public-api-prod.us-west-2.elasticbeanstalk.com/corpus/
*
* University of Crete
* Aiming to participate in TREC 2020 Fair Ranking Track
* https://fair-trec.github.io/
*
*
http://www.csd.uoc.gr
*
Writing code during COVID-19 pandemic times :-(
*
* Project for hy463 Information Retrieval Systems course
* Collaborative work with the undergraduate/graduate students of
* Information Retrieval Systems (hy463) course
* Spring Semester 2020
* of Computer Science Department
* University of Crete
* http://www.csd.uoc.gr
* Greece
*
* LICENCE: TO BE ADDED
*
...
...
src/main/java/gr/csd/uoc/hy463/themis/stemmer/english/PorterStemmer.java
View file @
f9b5e36b
/*
* themis - A fair search engine for scientific articles
*
* Computer Science Department
* Currently over the Semantic Scholar Open Research Corpus
* http://s2-public-api-prod.us-west-2.elasticbeanstalk.com/corpus/
*
* University of Crete
* Aiming to participate in TREC 2020 Fair Ranking Track
* https://fair-trec.github.io/
*
*
http://www.csd.uoc.gr
*
Writing code during COVID-19 pandemic times :-(
*
* Project for hy463 Information Retrieval Systems course
* Collaborative work with the undergraduate/graduate students of
* Information Retrieval Systems (hy463) course
* Spring Semester 2020
* of Computer Science Department
* University of Crete
* http://www.csd.uoc.gr
* Greece
*
* LICENCE: TO BE ADDED
*
...
...
src/main/java/gr/csd/uoc/hy463/themis/utils/Pair.java
View file @
f9b5e36b
/*
* themis - A fair search engine for scientific articles
*
* Computer Science Department
* Currently over the Semantic Scholar Open Research Corpus
* http://s2-public-api-prod.us-west-2.elasticbeanstalk.com/corpus/
*
* University of Crete
* Aiming to participate in TREC 2020 Fair Ranking Track
* https://fair-trec.github.io/
*
*
http://www.csd.uoc.gr
*
Writing code during COVID-19 pandemic times :-(
*
* Project for hy463 Information Retrieval Systems course
* Collaborative work with the undergraduate/graduate students of
* Information Retrieval Systems (hy463) course
* Spring Semester 2020
* of Computer Science Department
* University of Crete
* http://www.csd.uoc.gr
* Greece
*
* LICENCE: TO BE ADDED
*
...
...
src/main/java/gr/csd/uoc/hy463/themis/utils/S2JsonEntryReader.java
View file @
f9b5e36b
/*
* themis - A fair search engine for scientific articles
*
* Computer Science Department
* Currently over the Semantic Scholar Open Research Corpus
* http://s2-public-api-prod.us-west-2.elasticbeanstalk.com/corpus/
*
* University of Crete
* Aiming to participate in TREC 2020 Fair Ranking Track
* https://fair-trec.github.io/
*
*
http://www.csd.uoc.gr
*
Writing code during COVID-19 pandemic times :-(
*
* Project for hy463 Information Retrieval Systems course
* Collaborative work with the undergraduate/graduate students of
* Information Retrieval Systems (hy463) course
* Spring Semester 2020
* of Computer Science Department
* University of Crete
* http://www.csd.uoc.gr
* Greece
*
* LICENCE: TO BE ADDED
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment