Exporting
clean_files(upload)
Cleans the files generated by the pipeline in data directory.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
upload |
Dict[str, bool]
|
Dictionary of outputs from the upload step. |
required |
Returns:
Type | Description |
---|---|
Dict[str, bool]
|
Dictionary of outputs from the clean step. |
Source code in make_us_rich/pipelines/exporting/nodes.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
|
upload_files(currency, compare, dir_path, validation)
Uploads model and features engineering files to Minio.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
currency |
str
|
Currency used in the model. |
required |
compare |
str
|
Compare used in the model. |
required |
validation |
Dict[Tuple[str, bool], Tuple[str, str]]
|
Dictionary of outputs from the validation step. |
required |
dir_path |
str
|
Directory path where the model files are saved. |
required |
Returns:
Type | Description |
---|---|
Dict[Tuple[str, bool]]
|
Dictionary of outputs from the upload step. |
Source code in make_us_rich/pipelines/exporting/nodes.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|
Last update:
2022-05-04