- Initialize uninit member variable
**Self evaluation:**
1. Build test: [X]Passed [ ]Failed [ ]Skipped
2. Run test: [X]Passed [ ]Failed [ ]Skipped
Signed-off-by: hyeonseok lee <hs89.lee@samsung.com>
}
NNTrainerInference::NNTrainerInference(const std::string &model_config_) :
+ batch_size(1),
model_config(model_config_) {
loadModel();
model->compile();
ModelTestOption /**< Options which test to run */>> {
protected:
- nntrainerModelTest() : iteration(0), name("") {}
+ nntrainerModelTest() :
+ iteration(0),
+ name(""),
+ options(ModelTestOption::MINIMUM) {}
virtual void SetUp() {
auto param = GetParam();