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
regressionmetricmetadata.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 gdayf.metrics.metricmetadata import MetricMetadata
16 import time
17 from numpy import isnan
18 
19 
20 
24 
25 
27  def __init__(self):
28  MetricMetadata.__init__(self)
29 
30 
32  def set_precision(self, threshold):
33  pass
34 
def set_precision(self, threshold)
Method to set precision measure Not implemented yet.
Define Base Metric object as OrderedDict() of common measures for all metrics types on an unified way...
Class Base for metricts as OrderedDict.
Class Base for Regression metricts as OrderedDict Base Metrics for Regression [No expanded metrics]...