algo_helper.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2019-2021, NVIDIA CORPORATION.
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 #pragma once
7 
8 namespace ML {
9 enum CRITERION {
12  MSE,
13  MAE,
18 };
19 
20 }; // namespace ML
Definition: dbscan.hpp:18
CRITERION
Definition: algo_helper.h:9
@ POISSON
Definition: algo_helper.h:14
@ MAE
Definition: algo_helper.h:13
@ MSE
Definition: algo_helper.h:12
@ ENTROPY
Definition: algo_helper.h:11
@ INVERSE_GAUSSIAN
Definition: algo_helper.h:16
@ GAMMA
Definition: algo_helper.h:15
@ CRITERION_END
Definition: algo_helper.h:17
@ GINI
Definition: algo_helper.h:10