forked from tjdolan121/TextClassifierLib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseClassifier.cpp
More file actions
53 lines (44 loc) · 732 Bytes
/
BaseClassifier.cpp
File metadata and controls
53 lines (44 loc) · 732 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
* @file BaseClassifier.cpp
* @brief Implementation of the BaseClassifier class.
*/
/*++
Revision History:
Date: Jun 28, 2024.
Author: Rajas Chavadekar.
Desc: Created.
--*/
#include "BaseClassifier.h"
/**
* @brief Constructor for BaseClassifier.
*/
BaseClassifier::BaseClassifier()
{
}
/**
* @brief Destructor for BaseClassifier.
*/
BaseClassifier::~BaseClassifier()
{
}
/**
* @brief Display the shape of the dataset.
*/
void BaseClassifier::shape()
{
pVec->shape();
}
/**
* @brief Display the head of the dataset.
*/
void BaseClassifier::head()
{
pVec->head();
}
/**
* @brief Set Model Version.
*/
void BaseClassifier::setVersionInfo(char* vers_info_in)
{
pVec->setVersionInfo(vers_info_in);
}