-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigs.json
38 lines (38 loc) · 1.04 KB
/
configs.json
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
{
"Reviews_Dataset_Reader": {
"path_folder": "../../data/",
"dataset_version": "FILTER",
"using_pics": 0,
"using_spark": 0,
"pic_link_header": "https://lh5.googleusercontent.com/p/"
},
"Word2vec_Dataset_Reader": {
"vector_mode": "COMPRESSED",
"using_spark": 0
},
"build_tfidf": {
"path_folder": "../../data/",
"vocab_column_names": [
"ingredients"
],
"max_df": 1.0,
"min_df": 1,
"vocabulary": null
},
"build_word2vec": {
"path_folder": "../../data/",
"vocab_column_names": [
"ingredients",
"name"
],
"seed": 1,
"size": 100,
"window": 5,
"min_count": 1
},
"Temp_Interaction_Data_Preparation_Builder": {
"with_tfidf_weighting": 1,
"with_concatenated": 1,
"using_spark": 0
}
}