File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
name = " MLJModelInterface"
2
2
uuid = " e80e1ace-859a-464e-9ed9-23947d8ae3ea"
3
3
authors = [" Thibaut Lienart and Anthony Blaom" ]
4
- version = " 1.4.1 "
4
+ version = " 1.4.2 "
5
5
6
6
[deps ]
7
7
Random = " 9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Original file line number Diff line number Diff line change @@ -140,7 +140,8 @@ something like this:
140
140
141
141
> `FooRegressor`
142
142
>
143
- >Model type for foo regressor, based on [FooRegressorPkg.jl](http://existentialcomics.com/).
143
+ >A model type for constructing a foo regressor,
144
+ >based on [FooRegressorPkg.jl](http://existentialcomics.com/).
144
145
>
145
146
>From MLJ, the type can be imported using
146
147
>
@@ -209,7 +210,7 @@ function doc_header(SomeModelType)
209
210
$name
210
211
```
211
212
212
- Model type for $human_name , based on
213
+ A model type for constructing a $human_name , based on
213
214
[$(package_name) .jl]($package_url ), and implementing the MLJ
214
215
model interface.
215
216
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ comparison =
52
52
"""
53
53
FooClassifier
54
54
55
- Model type for foo classifier, based on
55
+ A model type for constructing a foo classifier, based on
56
56
[FooClassifierPkg.jl](http://existentialcomics.com/),
57
57
and implementing the MLJ model interface.
58
58
155
155
FooRegressor
156
156
```
157
157
158
- Model type for foo regressor, based on [FooRegressorPkg.jl](http://existentialcomics.com/).
158
+ A model type for constructing a foo regressor, based on
159
+ [FooRegressorPkg.jl](http://existentialcomics.com/).
159
160
160
161
From MLJ, the type can be imported using
161
162
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ M.human_name(::Type{<:S1}) = "silly model"
32
32
33
33
M. package_name (:: Type{<:U1} ) = " Bach"
34
34
M. package_url (:: Type{<:U1} ) = " www.did_he_write_565.com"
35
- M. human_name (:: Type{<:U1} ) = " my model"
35
+ M. human_name (:: Type{<:U1} ) = " funky model"
36
36
37
37
@testset " traits" begin
38
38
ms = S1 ()
@@ -69,7 +69,7 @@ M.human_name(::Type{<:U1}) = "my model"
69
69
U1
70
70
```
71
71
72
- Model type for my model, based on
72
+ A model type for constructing a funky model, based on
73
73
[Bach.jl](www.did_he_write_565.com), and implementing the MLJ
74
74
model interface.
75
75
You can’t perform that action at this time.
0 commit comments