From 22ef4e359d964ef3785908f0d3af10cc0836980a Mon Sep 17 00:00:00 2001 From: tiemvanderdeure Date: Tue, 26 Nov 2024 12:58:48 +0100 Subject: [PATCH] maxnet is registered --- docs/src/usage/quickstart.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/usage/quickstart.md b/docs/src/usage/quickstart.md index 8f46e73..86982b6 100644 --- a/docs/src/usage/quickstart.md +++ b/docs/src/usage/quickstart.md @@ -3,10 +3,10 @@ CurrentModule = Maxnet ``` ## Installation -Maxnet.jl is not yet registered - install by running +Install the latest version of Maxnet.jl by running ```julia ] -add https://github.com/tiemvanderdeure/Maxnet.jl +add Maxnet ``` ## Basic usage @@ -31,7 +31,7 @@ There are numerous settings that can be tweaked to change the model fit. These a ### Model settings The two most important settings to change when running Maxnet is the feature classes selected and the regularization factor. -By default, the feature classes selected depends on the number of presence points, see [Maxnet.default_features](@ref). To set them manually, specify the `features` keyword using either a `Vector` of `AbstractFeatureClass`, or a `string`, where `l` represents `LinearFeature` and `CategoricalFeature`, `q` represents `QuadraticFeature`, `p` represents `ProductFeature`, `t` represents `ThresholdFeature` and `h` represents `HingeFeature`. +By default, the feature classes selected depends on the number of presence points, see [default_features](@ref). To set them manually, specify the `features` keyword using either a `Vector` of `AbstractFeatureClass`, or a `string`, where `l` represents `LinearFeature` and `CategoricalFeature`, `q` represents `QuadraticFeature`, `p` represents `ProductFeature`, `t` represents `ThresholdFeature` and `h` represents `HingeFeature`. For example: ```julia