File tree Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 2929 with :
3030 version : ${{ matrix.version }}
3131 arch : ${{ matrix.arch }}
32- - uses : actions/cache@v1
32+ - uses : julia- actions/cache@v1
3333 env :
3434 cache-name : cache-artifacts
3535 with :
6363 using Documenter: DocMeta, doctest
6464 using MLJModelInterface
6565 DocMeta.setdocmeta!(MLJModelInterface, :DocTestSetup, :(using MLJModelInterface); recursive=true)
66- doctest(MLJModelInterface)'
66+ doctest(MLJModelInterface)'
Original file line number Diff line number Diff line change 11name = " MLJModelInterface"
22uuid = " e80e1ace-859a-464e-9ed9-23947d8ae3ea"
33authors = [" Thibaut Lienart and Anthony Blaom" ]
4- version = " 1.11.0 "
4+ version = " 1.11.1 "
55
66[deps ]
7+ REPL = " 3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
78Random = " 9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
89ScientificTypesBase = " 30f210dd-8aff-4c5f-94ba-8e64358c1161"
910StatisticalTraits = " 64bff920-2084-43da-a3e6-9bb72801c0c9"
@@ -16,6 +17,7 @@ Distances = "0.10"
1617InteractiveUtils = " <0.0.1, 1"
1718Markdown = " <0.0.1, 1"
1819OrderedCollections = " 1"
20+ REPL = " <0.0.1, 1"
1921Random = " <0.0.1, 1"
2022ScientificTypes = " 3"
2123ScientificTypesBase = " 3"
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ const ABSTRACT_MODEL_SUBTYPES = [
6363using ScientificTypesBase
6464using StatisticalTraits
6565using Random
66+ using REPL # apparently needed to get Base.Docs.doc to work
6667
6768import StatisticalTraits: info
6869
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ depwarn_docstring(T) =
7171 Regarding $T : `metadata_model` should not be called with the keyword argument `descr`
7272 or `docstring`. Implementers of the MLJ model interface should instead create an
7373 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
7575 for details.
7676
7777 """
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ The following trait overload is also required:
4747training_losses (model, report) = nothing
4848
4949# 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 :
5151function update_data end
5252
5353"""
@@ -67,7 +67,7 @@ the model-specific representations of the data.
6767
6868To implement the `reformat` data front-end for a model, refer to
6969"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/).
7171
7272
7373"""
You can’t perform that action at this time.
0 commit comments