-
Notifications
You must be signed in to change notification settings - Fork 3
Labels
🏖️ low effortIssue that can be tackled without too much problemIssue that can be tackled without too much problem📚 documentationImprovements or additions to documentationImprovements or additions to documentation
Description
The example calls logistic as
predictors = [logistic(centers[i], shapes[i]) for i in eachindex(L)]
but the arguments are flipped as logistic is defined as
logistic(x, α, β) = 1 / (1 + exp((x - β) / α))
logistic(α, β) = (x) -> logistic(x, α, β)
so the first argument α is the shape and the second argument β is the center
Metadata
Metadata
Assignees
Labels
🏖️ low effortIssue that can be tackled without too much problemIssue that can be tackled without too much problem📚 documentationImprovements or additions to documentationImprovements or additions to documentation
Type
Projects
Status
Done