|
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
|
Core class oriented to manage pipeline of workflows execution orchestrating the execution of actions activities. More...


Public Member Functions | |
| def | __init__ (self, user_id='PoC_gDayF') |
| Constructor. | |
| def | workflow (self, datapath, workflow, prefix=None, remove_models=EACH_BEST) |
| Method leading workflow executions. More... | |
| def | train_workflow (self, datapath, wkey, workflow, prefix='main', remove_models=EACH_BEST) |
| Method leading train workflow executions. More... | |
| def | predict_workflow (self, datapath, wkey, workflow, prefix='main', workflow_id='default', remove_models=EACH_BEST) |
| Method leading predict workflow executions. More... | |
| def | check_path (self, datapath) |
| Method managing dataset load from datapath: More... | |
| def | storage_path (self, mode, filename, filetype) |
| Method managing storage path. More... | |
| def | replicate_file (self, mode, filename) |
| Method replicate files from primery to others. More... | |
Public Attributes | |
| timestamp | |
Core class oriented to manage pipeline of workflows execution orchestrating the execution of actions activities.
Definition at line 32 of file workflow.py.
| def gdayf.workflow.workflow.Workflow.check_path | ( | self, | |
| datapath | |||
| ) |
Method managing dataset load from datapath:
| datapath | String Path indicating file to be analyzed or Dataframe |
Definition at line 425 of file workflow.py.

| def gdayf.workflow.workflow.Workflow.predict_workflow | ( | self, | |
| datapath, | |||
| wkey, | |||
| workflow, | |||
prefix = 'main', |
|||
workflow_id = 'default', |
|||
remove_models = EACH_BEST |
|||
| ) |
Method leading predict workflow executions.
| self | object pointer |
| e_c | experiment_configuration |
| datapath | String Path indicating file to be analyzed or Dataframe |
| wkey | Step name |
| workflow | String Path indicating test workflow definition path |
| remove_models | [BEST, BEST_3, EACH_BEST, ALL] |
| prefix | value |
Definition at line 279 of file workflow.py.


| def gdayf.workflow.workflow.Workflow.replicate_file | ( | self, | |
| mode, | |||
| filename | |||
| ) |
Method replicate files from primery to others.
| mode | ['train','predict'] |
| filename | filename |
Definition at line 479 of file workflow.py.

| def gdayf.workflow.workflow.Workflow.storage_path | ( | self, | |
| mode, | |||
| filename, | |||
| filetype | |||
| ) |
Method managing storage path.
| mode | ['train','predict'] |
| filename | filename |
| filetype | file type |
Definition at line 446 of file workflow.py.

| def gdayf.workflow.workflow.Workflow.train_workflow | ( | self, | |
| datapath, | |||
| wkey, | |||
| workflow, | |||
prefix = 'main', |
|||
remove_models = EACH_BEST |
|||
| ) |
Method leading train workflow executions.
| self | object pointer |
| datapath | String Path indicating file to be analyzed or Dataframe |
| wkey | Step name |
| workflow | String Path indicating train workflow definition path |
| prefix | value |
| remove_models | [BEST, BEST_3, EACH_BEST, ALL] |
Definition at line 86 of file workflow.py.


| def gdayf.workflow.workflow.Workflow.workflow | ( | self, | |
| datapath, | |||
| workflow, | |||
prefix = None, |
|||
remove_models = EACH_BEST |
|||
| ) |
Method leading workflow executions.
| self | object pointer |
| e_c | experiment_configuration |
| datapath | String Path indicating file to be analyzed or Dataframe |
| workflow | String Path indicating train workflow definition path |
| remove_models | [BEST, BEST_3, EACH_BEST, ALL] |
| prefix | value |
Definition at line 50 of file workflow.py.


1.8.13