Skip to content

Commit

Permalink
Updated docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander März committed Jun 15, 2023
1 parent c58688e commit 40652e7
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/Beta.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Beta:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
loss_fn: str
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).
Expand Down
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/Cauchy.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Cauchy:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
loss_fn: str
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).
Expand Down
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/Gamma.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Gamma:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
loss_fn: str
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).
Expand Down
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/Gaussian.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Gaussian:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
loss_fn: str
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).
Expand Down
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/Gumbel.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Gumbel:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
loss_fn: str
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).
Expand Down
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/Laplace.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Laplace:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
loss_fn: str
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).
Expand Down
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/LogNormal.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class LogNormal:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
loss_fn: str
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).
Expand Down
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/NegativeBinomial.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class NegativeBinomial:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn_total_count: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp", "softplus" or "relu".
response_fn_probs: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
Expand Down
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/Poisson.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Poisson:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp", "softplus" or "relu".
loss_fn: str
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).
Expand Down
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/StudentT.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class StudentT:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
loss_fn: str
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).
Expand Down
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/Weibull.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Weibull:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
loss_fn: str
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).
Expand Down
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/ZABeta.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ZABeta:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
loss_fn: str
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).
Expand Down
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/ZAGamma.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ZAGamma:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
loss_fn: str
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).
Expand Down
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/ZALN.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ZALN:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
loss_fn: str
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).
Expand Down
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/ZINB.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ZINB:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn_total_count: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp", "softplus" or "relu".
response_fn_probs: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
Expand Down
2 changes: 1 addition & 1 deletion lightgbmlss/distributions/ZIPoisson.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class ZIPoisson:
stabilization: str
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
response_fn: str
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
the user is responsible for specifying the transformations. Options are "exp", "softplus" or "relu".
loss_fn: str
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).
Expand Down

0 comments on commit 40652e7

Please sign in to comment.