|
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
|
Class storage metadata format [{value: , fstype:['localfs', 'hdfs', 'mongoDB'], hash_value : "", hash_type: ['MD5','SHA256']. More...


Public Member Functions | |
| def | __init__ (self, e_c) |
| Constructor return empty list of StoragMetadata. | |
| def | append (self, value, fstype='localfs', hash_type='MD5') |
| class used to add storage locations to StorageMetadata. More... | |
| def | get_load_path (self, include=False) |
| method used to get relative load path from config.json More... | |
| def | get_log_path (self) |
| method used to get relative log path from config.json More... | |
| def | get_json_path (self, include=False) |
| method used to get relative json path from config.json More... | |
| def | get_prediction_path (self, include=False) |
| method used to get relative prediction path from config.json More... | |
| def | exclude_debug_fs (self, storage_metadata, include=False) |
| method used to exclude localfs in non-debug modes More... | |
Class storage metadata format [{value: , fstype:['localfs', 'hdfs', 'mongoDB'], hash_value : "", hash_type: ['MD5','SHA256'].
Definition at line 24 of file storagemetadata.py.
| def gdayf.common.storagemetadata.StorageMetadata.append | ( | self, | |
| value, | |||
fstype = 'localfs', |
|||
hash_type = 'MD5' |
|||
| ) |
class used to add storage locations to StorageMetadata.
use list().append method to include correct media and hash_value for file over OrderedDict() object overriding list().append method
| self | object pointer location (optional) |
| value | type full file path (string) |
| fstype | in ['localfs', 'hdfs', 'mongoDB'] default value 'localfs' |
| hash_type | in ['MD5','SHA256'] , default value 'MD5' |
Definition at line 41 of file storagemetadata.py.

| def gdayf.common.storagemetadata.StorageMetadata.exclude_debug_fs | ( | self, | |
| storage_metadata, | |||
include = False |
|||
| ) |
method used to exclude localfs in non-debug modes
| storage_metadata | StorageMetadata object |
| include | enable localfs |
Definition at line 89 of file storagemetadata.py.

| def gdayf.common.storagemetadata.StorageMetadata.get_json_path | ( | self, | |
include = False |
|||
| ) |
method used to get relative json path from config.json
| self | object pointer location (optional) |
| include | enable localfs |
Definition at line 76 of file storagemetadata.py.

| def gdayf.common.storagemetadata.StorageMetadata.get_load_path | ( | self, | |
include = False |
|||
| ) |
method used to get relative load path from config.json
| self | object pointer location (optional) |
| include | enable localfs |
Definition at line 63 of file storagemetadata.py.

| def gdayf.common.storagemetadata.StorageMetadata.get_log_path | ( | self | ) |
method used to get relative log path from config.json
| self | object pointer location (optional) |
Definition at line 69 of file storagemetadata.py.
| def gdayf.common.storagemetadata.StorageMetadata.get_prediction_path | ( | self, | |
include = False |
|||
| ) |
method used to get relative prediction path from config.json
| self | object pointer location (optional) |
| include | enable localfs |
Definition at line 83 of file storagemetadata.py.

1.8.13