Skip to content

Commit

Permalink
Merge pull request #215 from egenn/patch-1
Browse files Browse the repository at this point in the history
Fix Pkg call in README.md
  • Loading branch information
jeremiedb authored Mar 18, 2023
2 parents 4da60ae + d9ac56f commit 2ff0f5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Input features are expected to be `Matrix{Float64/Float32}` when using the inter
Latest:

```julia-repl
julia> Pkg.add("https://github.com/Evovest/EvoTrees.jl")
julia> Pkg.add(url="https://github.com/Evovest/EvoTrees.jl")
```

From General Registry:
Expand Down Expand Up @@ -120,4 +120,4 @@ EvoTrees.save(m, "data/model.bson")
m = EvoTrees.load("data/model.bson");
```

A GPU model should be converted into a CPU one before saving: `m_cpu = convert(EvoTree, m_gpu)`.
A GPU model should be converted into a CPU one before saving: `m_cpu = convert(EvoTree, m_gpu)`.

0 comments on commit 2ff0f5a

Please sign in to comment.