Entity Matching by Similarity Join
 
Loading...
Searching...
No Matches
sampler_util.h
Go to the documentation of this file.
1/*
2 * author: Yunqi Li
3 * contact: liyunqixa@gmail.com
4 */
5#ifndef _SAMPLER_UTIL_H_
6#define _SAMPLER_UTIL_H_
7
8#include "common/io.h"
9#include "common/dataframe.h"
10#include <vector>
11#include <string>
12
13
15{
16public:
17 SamplerUtil() = default;
18 ~SamplerUtil() = default;
19 SamplerUtil(const SamplerUtil &other) = delete;
20 SamplerUtil(SamplerUtil &&other) = delete;
21
22public:
23 static void readCSVTables(const std::string &pathTableA, const std::string &pathTableB, Table &tableA, Table &tableB,
24 bool isRS);
25};
26
27
28#endif // _SAMPLER_UTIL_H_
Definition sampler_util.h:15
~SamplerUtil()=default
static void readCSVTables(const std::string &pathTableA, const std::string &pathTableB, Table &tableA, Table &tableB, bool isRS)
Definition sampler_util.cc:8
SamplerUtil(const SamplerUtil &other)=delete
SamplerUtil()=default
SamplerUtil(SamplerUtil &&other)=delete
Definition dataframe.h:19