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
inputhandler.py
1 
2 
3 '''
4 Copyright (C) e2its - All Rights Reserved
5  * Unauthorized copying of this file, via any medium is strictly prohibited
6  * Proprietary and confidential
7  *
8  * This file is part of gDayF project.
9  *
10  * Written by Luis Sanchez Bejarano <e2its.es@gmail.com>, 2016-2019
11 '''
12 
13 from pandas import read_csv as read_csv
14 from gdayf.common.dfmetada import DFMetada
15 
17  def __init__(self):
18  pass
19 
20 class inputHandlerCSV (inputHandler):
21 
22  def __init__(self):
23  super(inputHandlerCSV, self).__init__()
24 
25  def inputCSV(self, filename=None, **kwargs):
26  return read_csv(filename, **kwargs)
27 
28  def getCSVMetadata(self, dataframe, typedef):
29  return DFMetada.getDataFrameMetadata(dataframe, typedef)
30 
Define all objects, functions and structured related to Data Analysis of input data on OrderedDict fo...
Definition: dfmetada.py:1
def __init__(self)
The constructor.
Definition: inputhandler.py:22