JuliaAI / MLJLinearModels.jl

Generalized Linear Regressions Models (penalized regressions, robust regressions, ...)
MIT License
81 stars 13 forks source link

Documentation #17

Open tlienart opened 5 years ago

tlienart commented 5 years ago

(see branch docs)

CameronBieganek commented 4 years ago

Some documentation for the model types would also be handy. This is not very informative:

help?> LogisticClassifier
search: LogisticClassifier

  No documentation found.

  Summary
  ≡≡≡≡≡≡≡≡≡

  mutable struct LogisticClassifier <: MLJModelInterface.Probabilistic

  Fields
  ≡≡≡≡≡≡≡≡

  lambda             :: Real
  gamma              :: Real
  penalty            :: Union{String, Symbol}
  fit_intercept      :: Bool
  penalize_intercept :: Bool
  solver             :: Union{Nothing, MLJLinearModels.Solver}
  multi_class        :: Bool

  Supertype Hierarchy
  ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡

  LogisticClassifier <: MLJModelInterface.Probabilistic <: MLJModelInterface.Supervised <: MLJModelInterface.Model <: MLJModelInterface.MLJType <: Any
tlienart commented 4 years ago

yup :)

tlienart commented 4 years ago

@CameronBieganek docs have been added, also docstrings, all pretty rudimentary but hopefully should get the ball going, help / comments very welcome

CameronBieganek commented 4 years ago

Awesome, thanks!