Skip to content

Commit e92427d

Browse files
authored
Merge pull request #31 from JuliaAI/dev
For a 0.3.0 release
2 parents a312d45 + e907324 commit e92427d

12 files changed

+54
-24
lines changed

.github/codecov.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ coverage:
33
project:
44
default:
55
threshold: 0.5%
6-
target: auto
6+
patch:
7+
default:
8+
target: 80%

.github/workflows/CI.yml

+2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ jobs:
5151
${{ runner.os }}-
5252
- uses: julia-actions/julia-buildpkg@v1
5353
- uses: julia-actions/julia-runtest@v1
54+
env:
55+
MLFLOW_URI: "http://localhost:5000"
5456
- uses: julia-actions/julia-processcoverage@v1
5557
- uses: codecov/codecov-action@v3
5658
with:

.github/workflows/TagBot.yml

+18
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ on:
44
types:
55
- created
66
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: 3
10+
permissions:
11+
actions: read
12+
checks: read
13+
contents: write
14+
deployments: read
15+
issues: read
16+
discussions: read
17+
packages: read
18+
pages: read
19+
pull-requests: read
20+
repository-projects: read
21+
security-events: read
22+
statuses: read
723
jobs:
824
TagBot:
925
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
@@ -12,4 +28,6 @@ jobs:
1228
- uses: JuliaRegistries/TagBot@v1
1329
with:
1430
token: ${{ secrets.GITHUB_TOKEN }}
31+
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
1532
ssh: ${{ secrets.DOCUMENTER_KEY }}
33+
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}

Project.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MLJFlow"
22
uuid = "7b7b8358-b45c-48ea-a8ef-7ca328ad328f"
33
authors = ["Jose Esparza <[email protected]>"]
4-
version = "0.2.0"
4+
version = "0.3.0"
55

66
[deps]
77
MLFlowClient = "64a0f543-368b-4a9a-827a-e71edb2a0b83"
@@ -10,8 +10,8 @@ MLJModelInterface = "e80e1ace-859a-464e-9ed9-23947d8ae3ea"
1010

1111
[compat]
1212
MLFlowClient = "0.4.4"
13-
MLJBase = "1"
14-
MLJModelInterface = "1.9.1"
13+
MLJBase = "1.0.1"
14+
MLJModelInterface = "1.9.3"
1515
julia = "1.6"
1616

1717
[extras]

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The entire workload is divided into three different repositories:
3030
- [x] MLflow cycle automation (create experiment, create run, log metrics, log parameters,
3131
log artifacts, etc.)
3232

33-
- [x] Provides a wrapper `MLFlowLogger` for MLFlowClient.jl clients and associated
33+
- [x] Provides a wrapper `Logger` for MLFlowClient.jl clients and associated
3434
metadata; instances of this type are valid "loggers", which can be passed to MLJ
3535
functions supporting the `logger` keyword argument.
3636

@@ -71,7 +71,7 @@ We first define a logger, providing the address of our running MLflow. The exper
7171
name and artifact location are optional.
7272

7373
```julia
74-
logger = MLFlowLogger(
74+
logger = MLJFlow.Logger(
7575
"http://127.0.0.1:5000";
7676
experiment_name="MLJFlow test",
7777
artifact_location="./mlj-test"

src/MLJFlow.jl

-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,4 @@ include("types.jl")
1212
include("base.jl")
1313
include("service.jl")
1414

15-
# types.jl
16-
export MLFlowLogger
17-
1815
end

src/base.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function log_evaluation(logger::MLFlowLogger, performance_evaluation)
1+
function log_evaluation(logger::Logger, performance_evaluation)
22
experiment = getorcreateexperiment(logger.service, logger.experiment_name;
33
artifact_location=logger.artifact_location)
44
run = createrun(logger.service, experiment;
@@ -19,12 +19,12 @@ function log_evaluation(logger::MLFlowLogger, performance_evaluation)
1919
updaterun(logger.service, run, "FINISHED")
2020
end
2121

22-
function save(logger::MLFlowLogger, mach::Machine)
22+
function save(logger, machine:: Machine)
2323
io = IOBuffer()
24-
save(io, mach)
24+
save(io, machine)
2525
seekstart(io)
2626

27-
model = mach.model
27+
model = machine.model
2828

2929
experiment = getorcreateexperiment(logger.service, logger.experiment_name;
3030
artifact_location=logger.artifact_location)

src/service.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ function logmachinemeasures(service::MLFlow, run::MLFlowRun, measures,
7575
end
7676

7777
"""
78-
service(logger::MLFlowLogger)
78+
service(logger)
7979
8080
Returns the MLFlow service of a logger.
8181
"""
82-
service(logger::MLFlowLogger) = logger.service
82+
service(logger) = logger.service

src/types.jl

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
MLFlowLogger(baseuri; experiment_name="MLJ experiment",
2+
Logger(baseuri; experiment_name="MLJ experiment",
33
artifact_location=nothing)
44
55
A wrapper around a MLFlow service, with an experiment name and an artifact
@@ -17,24 +17,25 @@ used to store the artifacts of the experiment. If not provided, a default
1717
artifact location will be defined by MLFlow. For more information, see
1818
[MLFlow documentation](https://www.mlflow.org/docs/latest/tracking.html).
1919
20-
This constructor returns a `MLFlowLogger` object, containing the experiment
20+
This constructor returns a `Logger` object, containing the experiment
2121
name and the artifact location specified previously. Also it contains a
2222
`MLFlow` service, which is used to communicate with the MLFlow server. For
2323
more information, see [MLFlowClient.jl](https://juliaai.github.io/MLFlowClient.jl/dev/reference/#MLFlowClient.MLFlow).
2424
2525
"""
26-
struct MLFlowLogger
26+
struct Logger
2727
service::MLFlow
2828
verbosity::Int
2929
experiment_name::String
3030
artifact_location::Union{String,Nothing}
3131
end
32-
function MLFlowLogger(baseuri; experiment_name="MLJ experiment",
32+
function Logger(baseuri; experiment_name="MLJ experiment",
3333
artifact_location=nothing, verbosity=1)
3434
service = MLFlow(baseuri)
3535

3636
if ~healthcheck(service)
37-
error("It seems that the MLFlow server is not running. For more information, see https://mlflow.org/docs/latest/quickstart.html")
37+
error("It seems that the MLFlow server is not running at specified "*
38+
"location, $baseuri. For more information, see https://mlflow.org/docs/latest/quickstart.html")
3839
end
39-
MLFlowLogger(service, verbosity, experiment_name, artifact_location)
40+
Logger(service, verbosity, experiment_name, artifact_location)
4041
end

test/base.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@testset verbose = true "base" begin
2-
logger = MLFlowLogger("http://localhost:5000";
2+
logger = MLJFlow.Logger(ENV["MLFLOW_URI"];
33
experiment_name="MLJFlow tests",
44
artifact_location="/tmp/mlj-test")
55

test/runtests.jl

+10
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ using MLFlowClient
88
using MLJModelInterface
99
using StatisticalMeasures
1010

11+
# To run this tests, you need to set the URI of your MLFlow server. By default,
12+
# you can set:
13+
#
14+
# ENV["MLFLOW_URI"] = "http://localhost:5000"
15+
#
16+
# For more information, see https://mlflow.org/docs/latest/quickstart.html#view-mlflow-runs-and-experiments
17+
if ~haskey(ENV, "MLFLOW_URI")
18+
error("WARNING: MLFLOW_URI is not set. To run this tests, you need to set the URI of your MLFlow server")
19+
end
20+
1121
include("base.jl")
1222
include("types.jl")
1323
include("service.jl")

test/types.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@testset "types" begin
2-
logger = MLFlowLogger("http://localhost:5000")
2+
logger = MLJFlow.Logger(ENV["MLFLOW_URI"])
33

4-
@test typeof(logger) == MLFlowLogger
4+
@test typeof(logger) == MLJFlow.Logger
55
@test typeof(logger.service) == MLFlow
66
end

0 commit comments

Comments
 (0)