You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lightweight and modular MLOps library with the aim to make ML development more efficient targeted at small teams or individuals.
9
-
10
-
Cascade was built especially for individuals or small teams that are in need of MLOps, but don't have time or resources to integrate with platforms.
12
+
Cascade offers the solution that enables MLOps features for small projects while demanding little. There is usually no need for the full MLOps setups in most of the small-scale ML-projects.
11
13
12
14
**Included in [Model Lifecycle](https://github.com/kelvins/awesome-mlops#model-lifecycle) section of Awesome MLOps list**
`HistoryViewer` allows to see model's lineage, what parameters resulted in what metrics
182
-
183
-
```python
184
-
from cascade import meta as cme
185
-
from cascade.repos import Repo
169
+
Then locate your Cascade Workspace and run:
186
170
187
-
188
-
repo = cdm.Repo("repo")
189
-
190
-
# This returns plotly figure
191
-
cme.HistoryViewer(repo).plot()
192
-
193
-
# This runs a dash server and allows to see changes in real time (for example while models are trained)
194
-
cme.HistoryViewer(repo).serve()
171
+
```bash
172
+
cascade ui
195
173
```
196
174
197
-
See tutorial in [documentation](https://oxid15.github.io/cascade/en/latest/tutorials/tutorials.html)
175
+
[Cascade UI](https://github.com/Laiserk/cascade_ui) is a separate project, that provides visual interface for Cascade experiments. For more detailed explanation you can visit [UI docs](https://oxid15.github.io/cascade/en/latest/tutorials/ui.html).
0 commit comments