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
anomaliesmetricmetadata.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.regressionmetricmetadata import RegressionMetricMetadata
16 
17 # Class Base for Regression metrics as OrderedDict
18 #
19 # Base Metrics for Anomalies-Regression
20 # [No expanded metrics]
22 
24  def __init__(self):
25  RegressionMetricMetadata.__init__(self)
26 
27 
Class Base for Regression metricts as OrderedDict Base Metrics for Regression [No expanded metrics]...
Define Regression Metric object as OrderedDict() of common measures for all frameworks on an unified ...