Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tianlh
LightGBM-DCU
Commits
521fe8de
Unverified
Commit
521fe8de
authored
Jun 26, 2022
by
Nikita Titov
Committed by
GitHub
Jun 26, 2022
Browse files
[docs][python] Fix return types in docstrings (#5326)
Update basic.py
parent
24117b76
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
python-package/lightgbm/basic.py
python-package/lightgbm/basic.py
+2
-2
No files found.
python-package/lightgbm/basic.py
View file @
521fe8de
...
@@ -3160,7 +3160,7 @@ class Booster:
...
@@ -3160,7 +3160,7 @@ class Booster:
Returns
Returns
-------
-------
upper_bound :
double
upper_bound :
float
Upper bound value of the model.
Upper bound value of the model.
"""
"""
ret
=
ctypes
.
c_double
(
0
)
ret
=
ctypes
.
c_double
(
0
)
...
@@ -3174,7 +3174,7 @@ class Booster:
...
@@ -3174,7 +3174,7 @@ class Booster:
Returns
Returns
-------
-------
lower_bound :
double
lower_bound :
float
Lower bound value of the model.
Lower bound value of the model.
"""
"""
ret
=
ctypes
.
c_double
(
0
)
ret
=
ctypes
.
c_double
(
0
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment