DayF core  1.2.1.2
DayF (Decision at your Fingertips) is an AutoML freeware development framework that let developers works with Machine Learning models without any idea of AI, simply taking a csv dataset and the objective column
metricmetadata.py
1 
4 
5 '''
6 Copyright (C) e2its - All Rights Reserved
7  * Unauthorized copying of this file, via any medium is strictly prohibited
8  * Proprietary and confidential
9  *
10  * This file is part of gDayF project.
11  *
12  * Written by Jose L. Sanchez <e2its.es@gmail.com>, 2016-2019
13 '''
14 
15 from collections import OrderedDict
16 
17 
21 class MetricMetadata(OrderedDict):
22 
24  def __init__(self):
25  OrderedDict.__init__(self)
26  self['MSE'] = None
27  self['mean_residual_deviance'] = None
28  self['nobs'] = None
29  self['model_category'] = None
30  self['predictions'] = None
31  self['rmsle'] = None
32  self['r2'] = None
33  self['RMSE'] = None
34  self['MAE'] = None
35  self['scoring_time'] = None
36 
37 
38 
39 
40 
41 
42 
43 
44 
45 
46 
47 
48 
def __init__(self)
Method constructor.
Class Base for metricts as OrderedDict.