-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconstants.h
More file actions
28 lines (23 loc) · 949 Bytes
/
constants.h
File metadata and controls
28 lines (23 loc) · 949 Bytes
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
//
// Created by kostasev on 10/15/2018.
//
#ifndef UNTITLED_CONSTANTS_H
#define UNTITLED_CONSTANTS_H
#include <iostream>
namespace consts {
const std::string input_file="C:\\Users\\kosti\\CLionProjects\\Recomendations\\data_files\\in.csv" ;
const std::string coins="C:\\Users\\kosti\\CLionProjects\\Recomendations\\data_files\\coins_queries.csv" ;
const std::string voc="C:\\Users\\kosti\\CLionProjects\\Recomendations\\data_files\\vader_lexicon.csv" ;
const std::string tweets="C:\\Users\\kosti\\CLionProjects\\Recomendations\\data_files\\tweets_dataset_small.csv" ;
const std::string clust_50="C:\\Users\\kosti\\CLionProjects\\Recomendations\\clusters\\000_50.txt" ;
const double z = 0.3141592;
}
namespace const_lsh {
const int k = 4;
const int L = 6;
const int w = 350;
const double R = 400.0;
const int table_size = 4;
const std::string def_func = "cosine";
}
#endif //UNTITLED_CONSTANTS_H