Skip to content

Commit 14441aa

Browse files
committed
update urls broken by MLJ transfer
1 parent af10ff2 commit 14441aa

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## MLJBase
22

33
Repository for developers that provides core functionality for the
4-
[MLJ](https://github.com/alan-turing-institute/MLJ.jl) machine
4+
[MLJ](https://github.com/JuliaAI/MLJ.jl) machine
55
learning framework.
66

77
| Branch | Julia | Build | Coverage |
@@ -20,7 +20,7 @@ learning framework.
2020

2121
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliaai.github.io/MLJBase.jl/stable/)
2222

23-
[MLJ](https://github.com/alan-turing-institute/MLJ.jl) is a Julia
23+
[MLJ](https://github.com/JuliaAI/MLJ.jl) is a Julia
2424
framework for combining and tuning machine learning models. This
2525
repository provides core functionality for MLJ, including:
2626

@@ -37,7 +37,7 @@ repository provides core functionality for MLJ, including:
3737
- basic utilities for **manipulating datasets** and for **synthesizing datasets** (src/data)
3838

3939
- a [small
40-
interface](https://alan-turing-institute.github.io/MLJ.jl/dev/evaluating_model_performance/#Custom-resampling-strategies-1)
40+
interface](https://JuliaAI.github.io/MLJ.jl/dev/evaluating_model_performance/#Custom-resampling-strategies-1)
4141
for **resampling strategies** and implementations, including `CV()`, `StratifiedCV` and
4242
`Holdout` (src/resampling.jl). Actual performance evaluation measures (aka metrics), which previously
4343
were provided by MLJBase.jl, now live in [StatisticalMeasures.jl](https://juliaai.github.io/StatisticalMeasures.jl/dev/).

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
These docs are bare-bones and auto-generated. Complete MLJ
44
documentation is
5-
[here](https://alan-turing-institute.github.io/MLJ.jl/dev/).
5+
[here](https://JuliaAI.github.io/MLJ.jl/dev/).
66

77
For MLJBase-specific developer information, see also the [README.md
88
file](https://github.com/JuliaAI/MLJBase.jl#readme).

src/composition/learning_networks/nodes.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ function ScientificTypes.elscitype(
182182
end
183183

184184
# TODO after
185-
# https://github.com/alan-turing-institute/ScientificTypesBase.jl/issues/102 :
185+
# https://github.com/JuliaAI/ScientificTypesBase.jl/issues/102 :
186186
# Add Probabilistic case to above
187187

188188
ScientificTypes.scitype(N::Node) = CallableReturning{elscitype(N)}

src/composition/models/pipelines.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ end
397397

398398
# # LEARNING NETWORK INTERFACE
399399

400-
# https://alan-turing-institute.github.io/MLJ.jl/dev/composing_models/#Learning-network-machines
400+
# https://JuliaAI.github.io/MLJ.jl/dev/composing_models/#Learning-network-machines
401401

402402

403403
# ## Methods to extend a pipeline learning network

src/composition/models/stacking.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ MLJBase.load_path(::Type{<:ProbabilisticStack}) = "MLJBase.ProbabilisticStack"
276276
MLJBase.load_path(::Type{<:DeterministicStack}) = "MLJBase.DeterministicStack"
277277
MLJBase.package_name(::Type{<:Stack}) = "MLJBase"
278278
MLJBase.package_uuid(::Type{<:Stack}) = "a7f614a8-145f-11e9-1d2a-a57a1082229d"
279-
MLJBase.package_url(::Type{<:Stack}) = "https://github.com/alan-turing-institute/MLJBase.jl"
279+
MLJBase.package_url(::Type{<:Stack}) = "https://github.com/JuliaAI/MLJBase.jl"
280280
MLJBase.package_license(::Type{<:Stack}) = "MIT"
281281

282282
###########################################################

src/interface/data_utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ MMI.selectcols(::FI, ::Val{:table}, X, ::Colon) = X
8989
function MMI.selectrows(::FI, ::Val{:table}, X, r)
9090
r = r isa Integer ? (r:r) : r
9191
# next uncommented line is a hack; see
92-
# https://github.com/alan-turing-institute/MLJBase.jl/issues/151
92+
# https://github.com/JuliaAI/MLJBase.jl/issues/151
9393
isdataframe(X) && return X[r, :]
9494
cols = Tables.columntable(X)
9595
new_cols = NamedTuple{keys(cols)}(tuple((c[r] for c in values(cols))...))

test/_models/Constant.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ metadata_pkg.((ConstantRegressor, ConstantClassifier,
171171
DeterministicConstantRegressor, DeterministicConstantClassifier),
172172
name="MLJModels",
173173
uuid="d491faf4-2d78-11e9-2867-c94bc002c0b7",
174-
url="https://github.com/alan-turing-institute/MLJModels.jl",
174+
url="https://github.com/JuliaAI/MLJModels.jl",
175175
julia=true,
176176
license="MIT",
177177
is_wrapper=false)

test/_models/simple_composite_model.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ for model in COMPOSITE_MODELS
5454

5555
MLJBase.metadata_pkg(
5656
$(model);
57-
package_url = "https://github.com/alan-turing-institute/MLJBase.jl",
57+
package_url = "https://github.com/JuliaAI/MLJBase.jl",
5858
is_pure_julia = true,
5959
is_wrapper = true
6060
)

0 commit comments

Comments
 (0)