getml.project
This module helps you handle your current project.
load
Loads a project from a bundle and connects to it.
PARAMETER | DESCRIPTION |
---|---|
bundle | The TYPE: |
name | A name for the project contained in the bundle. If None, the name will be extracted from the bundle. |
Source code in getml/project/attrs.py
75 76 77 78 79 80 81 82 83 84 85 86 |
|
delete
delete() -> None
Deletes the currently connected project. All related pipelines, data frames and hyperopts will be irretrievably deleted.
Source code in getml/project/attrs.py
89 90 91 92 93 94 95 |
|
restart
restart() -> None
Suspends and then relaunches the currently connected project. This will kill all jobs currently running on that process.
Source code in getml/project/attrs.py
98 99 100 101 102 103 104 |
|
save
save(
filename: Optional[Union[PathLike, str]] = None,
target_dir: Optional[str] = None,
replace: bool = False,
) -> None
Saves the currently connected project to disk.
PARAMETER | DESCRIPTION |
---|---|
filename | The name of the |
replace | Whether to replace an existing bundle. TYPE: |
Deprecated
1.5: The target_dir
argument is deprecated.
Source code in getml/project/attrs.py
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
|
suspend
suspend() -> None
Suspends the currently connected project.
Source code in getml/project/attrs.py
134 135 136 137 138 139 |
|
switch
switch(name: str) -> None
Creates a new project or loads an existing one.
If there is no project called name
present on the Engine, a new one will be created. See the User guide for more information.
PARAMETER | DESCRIPTION |
---|---|
name | Name of the new project. TYPE: |
Source code in getml/project/attrs.py
142 143 144 145 146 147 148 149 150 151 152 153 |
|
data_frames
getml.project.data_frames
hyperopts
getml.project.hyperopts
pipelines
getml.project.pipelines
name
getml.project.name