From 76352d5183f3970ea2e3691ad7755dbaad7276f6 Mon Sep 17 00:00:00 2001 From: "Anthony Blaom, PhD" Date: Mon, 27 May 2024 18:35:00 +1200 Subject: [PATCH] fix typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d57ec88..108c59b 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ And we reconstruct our trained machine thus: ```julia using MLFlowClient artifacts = MLFlowClient.listartifacts(service, run) -mach2 = machine(artifact[1].filepath) +mach2 = machine(artifacts[1].filepath) ``` We can predict using the deserialized machine: