File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 29
29
with :
30
30
version : ${{ matrix.version }}
31
31
arch : ${{ matrix.arch }}
32
- - uses : actions/cache@v1
32
+ - uses : julia- actions/cache@v1
33
33
env :
34
34
cache-name : cache-artifacts
35
35
with :
63
63
using Documenter: DocMeta, doctest
64
64
using MLJModelInterface
65
65
DocMeta.setdocmeta!(MLJModelInterface, :DocTestSetup, :(using MLJModelInterface); recursive=true)
66
- doctest(MLJModelInterface)'
66
+ doctest(MLJModelInterface)'
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ authors = ["Thibaut Lienart and Anthony Blaom"]
4
4
version = " 1.11.0"
5
5
6
6
[deps ]
7
+ REPL = " 3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
7
8
Random = " 9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
8
9
ScientificTypesBase = " 30f210dd-8aff-4c5f-94ba-8e64358c1161"
9
10
StatisticalTraits = " 64bff920-2084-43da-a3e6-9bb72801c0c9"
@@ -16,6 +17,7 @@ Distances = "0.10"
16
17
InteractiveUtils = " <0.0.1, 1"
17
18
Markdown = " <0.0.1, 1"
18
19
OrderedCollections = " 1"
20
+ REPL = " <0.0.1, 1"
19
21
Random = " <0.0.1, 1"
20
22
ScientificTypes = " 3"
21
23
ScientificTypesBase = " 3"
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ const ABSTRACT_MODEL_SUBTYPES = [
63
63
using ScientificTypesBase
64
64
using StatisticalTraits
65
65
using Random
66
+ using REPL # apparently needed to get Base.Docs.doc to work
66
67
67
68
import StatisticalTraits: info
68
69
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ depwarn_docstring(T) =
71
71
Regarding $T : `metadata_model` should not be called with the keyword argument `descr`
72
72
or `docstring`. Implementers of the MLJ model interface should instead create an
73
73
MLJ-compliant docstring in the usual way. See
74
- https://alan-turing-institute .github.io/MLJ.jl/dev/adding_models_for_general_use/#Document-strings
74
+ https://juliaai .github.io/MLJ.jl/dev/adding_models_for_general_use/#Document-strings
75
75
for details.
76
76
77
77
"""
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ The following trait overload is also required:
47
47
training_losses (model, report) = nothing
48
48
49
49
# to support online learning in the future:
50
- # https://github.com/alan-turing-institute /MLJ.jl/issues/60 :
50
+ # https://github.com/JuliaAI /MLJ.jl/issues/60 :
51
51
function update_data end
52
52
53
53
"""
@@ -67,7 +67,7 @@ the model-specific representations of the data.
67
67
68
68
To implement the `reformat` data front-end for a model, refer to
69
69
"Implementing a data front-end" in the [MLJ
70
- manual](https://alan-turing-institute .github.io/MLJ.jl/dev/adding_models_for_general_use/).
70
+ manual](https://juliaai .github.io/MLJ.jl/dev/adding_models_for_general_use/).
71
71
72
72
73
73
"""
You can’t perform that action at this time.
0 commit comments