-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstant.php
38 lines (32 loc) · 2.06 KB
/
Constant.php
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
<?php
namespace App\Module\ML\Domain;
final class Constant
{
public const string SPAM_MODEL_FILENAME = 'spam.rbx';
public const string DEFAULT_SPAM_DATASET_FILENAME = 'spam_NLP.csv';
public const string DEFAULT_SPAM_CLEANSED_DATASET_FILENAME = 'spam_cleansed_NLP.csv';
public const string DEFAULT_SPAM_TRAINING_DATASET_FILENAME = 'spam_training_NLP.csv';
public const string DEFAULT_SPAM_TESTING_DATASET_FILENAME = 'spam_testing_NLP.csv';
public const string DEFAULT_LANGUAGE = 'english';
public const float DEFAULT_SPLIT_RATIO = 0.75;
public const int DEFAULT_MIN_WORDS_COUNT = 2;
public const int DEFAULT_MIN_DOCUMENT_COUNT = 4;
public const float DEFAULT_MAX_DOCUMENT_RATIO = 0.5;
public const int DEFAULT_TREE_ESTIMATORS = 200;
public const float DEFAULT_TREE_RATIO = 0.2;
public const bool DEFAULT_TREE_BALANCED = true;
public const int DEFAULT_TO_LONG_WORD_SIZE = 46;
public const array STOP_WORDS = [
'i', 'me', 'my', 'myself', 'we', 'our', 'ours', 'ourselves', 'you', 'your', 'yours', 'yourself', 'yourselves',
'he', 'him', 'his', 'himself', 'she', 'her', 'hers', 'herself', 'it', 'its', 'itself', 'they', 'them', 'their',
'theirs', 'themselves', 'what', 'which', 'who', 'whom', 'this', 'that', 'these', 'those', 'am', 'is', 'are',
'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'having', 'do', 'does', 'did', 'doing', 'a', 'an',
'the', 'and', 'but', 'if', 'or', 'because', 'as', 'until', 'while', 'of', 'at', 'by', 'for', 'with', 'about',
'against', 'between', 'into', 'through', 'during', 'before', 'after', 'above', 'below', 'to', 'from', 'up',
'down', 'in', 'out', 'on', 'off', 'over', 'under', 'again', 'further', 'then', 'once', 'here', 'there', 'when',
'where', 'why', 'how', 'all', 'any', 'both', 'each', 'few', 'more', 'most', 'other', 'some', 'such', 'no',
'nor', 'not', 'only', 'own', 'same', 'so', 'than', 'too', 'very', 's', 't', 'can', 'will', 'just', 'don',
'should', 'now',
];
public const int DEFAULT_FOLDS_NUMBER = 5;
}