Skip to content

Commit 69a4e91

Browse files
authored
Merge pull request #196 from JuliaAI/dev
For a 1.9.6 release
2 parents 63f4e14 + 5ac60f3 commit 69a4e91

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MLJModelInterface"
22
uuid = "e80e1ace-859a-464e-9ed9-23947d8ae3ea"
33
authors = ["Thibaut Lienart and Anthony Blaom"]
4-
version = "1.9.5"
4+
version = "1.9.6"
55

66
[deps]
77
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ machine learning models into
99
| :-----------: | :------: |
1010
| [![Build Status](https://github.com/JuliaAI/MLJModelInterface.jl/workflows/CI/badge.svg)](https://github.com/JuliaAI/MLJModelInterface.jl/actions) | [![codecov.io](http://codecov.io/github/JuliaAI/MLJModelInterface.jl/coverage.svg?branch=master)](http://codecov.io/github/JuliaAI/MLJModelInterface.jl?branch=master) |
1111

12-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliaai.github.io/MLJModelInterface.jl/stable/)
12+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliaai.github.io/MLJModelInterface.jl/dev/)
1313

1414

1515
[MLJ](https://alan-turing-institute.github.io/MLJ.jl/dev/) is a framework for evaluating,
1616
combining and optimizing machine learning models in Julia. A third party package wanting
1717
to integrate their machine learning models into MLJ must import the module
1818
`MLJModelInterface` defined in this package, as described in the
19-
[documentation]((https://juliaai.github.io/MLJModelInterface.jl/stable/).
19+
[documentation](https://juliaai.github.io/MLJModelInterface.jl/dev/).

src/model_traits.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function supervised_fit_data_scitype(M)
5959
W = AbstractVector{<:Union{Continuous, Count}} # weight scitype
6060
return Union{ret, Tuple{I, T, W}}
6161
elseif supports_class_weights(M)
62-
W = AbstractDict{Finite, <:Union{Continuous, Count}}
62+
W = Any
6363
return Union{ret, Tuple{I, T, W}}
6464
end
6565
return ret

0 commit comments

Comments
 (0)