Skip to content

Commit a25a082

Browse files
fix broken @ref links in docs
1 parent adb4cc8 commit a25a082

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

docs/src/usage/mlj.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,13 @@ Maxnet.jl integrates with the MLJ ecosystem.
77

88
See [MLJs project page](https://github.com/alan-turing-institute/MLJ.jl) for more info about MLJ.
99

10-
To use Maxnet with MLJ, initialise a model by calling [`MaxnetBinaryClassifier`](@ref), which accepts any arguments otherwise passed to [`maxnet`]. The model can then be used to construct MLJ's `machine`.
10+
To use Maxnet with MLJ, initialise a model by calling [`MaxnetBinaryClassifier`](@ref), which accepts any arguments otherwise passed to [`maxnet`](@ref). The model can then be used with MLJ's `machine`.
1111

1212
For example:
1313

1414
```julia
1515
using Maxnet: MaxnetBinaryClassifier, bradypus
1616
using MLJBase
17-
using CategoricalArrays
1817

1918
# sample data
2019
y, X = bradypus()
@@ -38,4 +37,3 @@ pred_test = predict(mach; rows = test)
3837
pred = predict(mach, X)
3938
```
4039

41-

docs/src/usage/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ bradypus_model = maxnet(p_a, env)
2626
prediction = predict(bradypus_model, env)
2727
```
2828

29-
There are numerous settings that can be tweaked to change the model fit. These are documentated in the documentation for the `maxnet`(@ref) and `predict`(@ref) functions.
29+
There are numerous settings that can be tweaked to change the model fit. These are documentated in the documentation for the [`maxnet`](@ref) and [`predict`](@ref) functions.
3030

3131
### Model settings
3232
The two most important settings to change when running Maxnet is the feature classes selected and the regularization factor.

0 commit comments

Comments
 (0)