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
frameworkmetadata.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 from gdayf.conf.loadconfig import LoadConfig
17 
18 
19 
20 class FrameworkMetadata (OrderedDict):
21 
22  def __init__(self, e_c):
23  # Load default parameters for Models as OrderedDict
24  self._ec = e_c
25  config = self._ec.config.get_config()['frameworks']
26  for key, value in config.items():
27  self[key] = value
28 
29 
30 if __name__ == "__main__":
31  m = FrameworkMetadata()
32  print (m['h2o'])
Generate Framework base Class and base members.
Define all objects, functions and structs related to load on system all configuration parameter from ...
Definition: loadconfig.py:1