Skip to content

Commit 35c5cef

Browse files
authored
Merge pull request #6 from RWTH-TIME/chore/set-lemma-as-default
set lemmatization as default
2 parents ae8ed05 + 513f9e8 commit 35c5cef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class BIBFileInput(FileSettings, InputSettings):
4141
class PreprocessTXT(EnvSettings):
4242
LANGUAGE: str = "en"
4343
FILTER_STOPWORDS: bool = True
44-
UNIGRAM_NORMALIZER: str = "porter"
44+
UNIGRAM_NORMALIZER: str = "lemma"
4545
USE_NGRAMS: bool = True
4646
NGRAM_MIN: int = 2
4747
NGRAM_MAX: int = 3
@@ -54,7 +54,7 @@ class PreprocessTXT(EnvSettings):
5454
class PreprocessBIB(EnvSettings):
5555
LANGUAGE: str = "en"
5656
FILTER_STOPWORDS: bool = True
57-
UNIGRAM_NORMALIZER: str = "porter"
57+
UNIGRAM_NORMALIZER: str = "lemma"
5858
USE_NGRAMS: bool = True
5959
NGRAM_MIN: int = 2
6060
NGRAM_MAX: int = 3

0 commit comments

Comments
 (0)