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
Copy file name to clipboardExpand all lines: docs/src/logging_workflows.md
+13-10Lines changed: 13 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,11 @@
1
+
!!! note
2
+
3
+
Starting with MLJ 0.23.0, MLJFlow.jl methods are not immediately available, as the package has been removed as a direct dependency. Previous behaviour will require `using MLJFlow`. See also the "Warning" below.
4
+
1
5
# Logging Workflows
2
6
3
-
Currently the following workflows can log their outcomes to an external machine learning
4
-
tracking platform, such as [MLflow](https://mlflow.org):
7
+
In principle, the following workflows can log their outcomes to an external machine learning
8
+
tracking platform, such as [mlflow](https://mlflow.org):
5
9
6
10
- Estimating model performance using [`evaluate`](@ref)/[`evaluate!`](@ref).
7
11
@@ -21,14 +25,13 @@ documentation.
21
25
22
26
### Supported tracking platforms
23
27
24
-
-[MLflow](https://mlflow.org) is natively supported by MLJ. You will still need to
25
-
install MLflow itself, and separately launch an MLflow service; see the [MLflow
26
-
docs](https://mlflow.org) on how to do this. The service can immediately be wrapped
27
-
to create a `logger` object, as demonstrated in the [MLJFlow.jl
MLJFlow.jl is a new package still under active development and should be regarded as experimental. At this time, breaking changes to MLJFlow.jl will not necessarily trigger new breaking releases of MLJ.jl.
30
+
Due to issues with the mlflow REST API, the current model for MLJ-mlflow integration is being reassessed. Use the existing tools at your own risk.
34
31
32
+
- To use [mlflow](https://mlflow.org) with MLJ you will need to add MLJFlow to your
33
+
package environment and call `using MLJFlow`. You additionally need to install
34
+
mlflow itself, and separately launch an mlflow service; see the [mlflow
35
+
docs](https://mlflow.org) on how to do this. The service can immediately be wrapped to
36
+
create a `logger` object, as demonstrated in the [MLJFlow.jl
0 commit comments