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
parametersmetadata.py
1 
7 
8 '''
9 Copyright (C) e2its - All Rights Reserved
10  * Unauthorized copying of this file, via any medium is strictly prohibited
11  * Proprietary and confidential
12  *
13  * This file is part of gDayF project.
14  *
15  * Written by Jose L. Sanchez <e2its.es@gmail.com>, 2016-2019
16 '''
17 
18 from collections import OrderedDict
19 
20 
21 
22 class ParameterMetadata(OrderedDict):
23 
24  def __init__(self):
25  OrderedDict.__init__(self)
26 
27 
31  def set_value(self, value, seleccionable=True, type=None):
32  self['value'] = value
33  self['seleccionable'] = bool(seleccionable)
34  self['type'] = str(type)
35 
36 
38  def set_seleccionable (self, boolean):
39  self['seleccionable'] = boolean
40 
41 
43  def get_seleccionable(self):
44  return self['seleccionable']
45 
def set_value(self, value, seleccionable=True, type=None)
Method for setting values on all field.
def set_seleccionable(self, boolean)
Method for setting values on seleccionable field.
def get_seleccionable(self)
Method for getting values on seleccionable field.