Skip to content

Commit 40652e7

Browse files
author
Alexander März
committed
Updated docstring
1 parent c58688e commit 40652e7

File tree

16 files changed

+16
-16
lines changed

16 files changed

+16
-16
lines changed

lightgbmlss/distributions/Beta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Beta:
2323
stabilization: str
2424
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
2525
response_fn: str
26-
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
26+
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
2727
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
2828
loss_fn: str
2929
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).

lightgbmlss/distributions/Cauchy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Cauchy:
2222
stabilization: str
2323
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
2424
response_fn: str
25-
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
25+
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
2626
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
2727
loss_fn: str
2828
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).

lightgbmlss/distributions/Gamma.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Gamma:
2323
stabilization: str
2424
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
2525
response_fn: str
26-
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
26+
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
2727
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
2828
loss_fn: str
2929
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).

lightgbmlss/distributions/Gaussian.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Gaussian:
2222
stabilization: str
2323
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
2424
response_fn: str
25-
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
25+
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
2626
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
2727
loss_fn: str
2828
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).

lightgbmlss/distributions/Gumbel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Gumbel:
2222
stabilization: str
2323
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
2424
response_fn: str
25-
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
25+
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
2626
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
2727
loss_fn: str
2828
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).

lightgbmlss/distributions/Laplace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Laplace:
2222
stabilization: str
2323
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
2424
response_fn: str
25-
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
25+
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
2626
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
2727
loss_fn: str
2828
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).

lightgbmlss/distributions/LogNormal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class LogNormal:
2222
stabilization: str
2323
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
2424
response_fn: str
25-
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
25+
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
2626
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
2727
loss_fn: str
2828
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).

lightgbmlss/distributions/NegativeBinomial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class NegativeBinomial:
2525
stabilization: str
2626
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
2727
response_fn_total_count: str
28-
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
28+
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
2929
the user is responsible for specifying the transformations. Options are "exp", "softplus" or "relu".
3030
response_fn_probs: str
3131
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,

lightgbmlss/distributions/Poisson.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Poisson:
2020
stabilization: str
2121
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
2222
response_fn: str
23-
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
23+
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
2424
the user is responsible for specifying the transformations. Options are "exp", "softplus" or "relu".
2525
loss_fn: str
2626
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).

lightgbmlss/distributions/StudentT.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class StudentT:
2525
stabilization: str
2626
Stabilization method for the Gradient and Hessian. Options are "None", "MAD", "L2".
2727
response_fn: str
28-
When a custom objective and metric are provided, XGBoost doesn't know its response and link function. Hence,
28+
When a custom objective and metric are provided, LightGBM doesn't know its response and link function. Hence,
2929
the user is responsible for specifying the transformations. Options are "exp" or "softplus".
3030
loss_fn: str
3131
Loss function. Options are "nll" (negative log-likelihood) or "crps" (continuous ranked probability score).

0 commit comments

Comments
 (0)