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
00d1e693
"src/vscode:/vscode.git/clone" did not exist on "25d149d8ceb92838dbf2f7331f9dc0dec701ffd8"
Unverified
Commit
00d1e693
authored
Oct 27, 2019
by
Nikita Titov
Committed by
GitHub
Oct 27, 2019
Browse files
[python] removed unused pylint directives (#2466)
parent
f1d4e449
Changes
18
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
0 additions
and
19 deletions
+0
-19
examples/python-guide/advanced_example.py
examples/python-guide/advanced_example.py
+0
-1
examples/python-guide/logistic_regression.py
examples/python-guide/logistic_regression.py
+0
-1
examples/python-guide/plot_example.py
examples/python-guide/plot_example.py
+0
-1
examples/python-guide/simple_example.py
examples/python-guide/simple_example.py
+0
-1
examples/python-guide/sklearn_example.py
examples/python-guide/sklearn_example.py
+0
-1
python-package/lightgbm/basic.py
python-package/lightgbm/basic.py
+0
-2
python-package/lightgbm/callback.py
python-package/lightgbm/callback.py
+0
-1
python-package/lightgbm/compat.py
python-package/lightgbm/compat.py
+0
-1
python-package/lightgbm/engine.py
python-package/lightgbm/engine.py
+0
-1
python-package/lightgbm/plotting.py
python-package/lightgbm/plotting.py
+0
-1
python-package/lightgbm/sklearn.py
python-package/lightgbm/sklearn.py
+0
-1
python-package/setup.py
python-package/setup.py
+0
-1
tests/c_api_test/test_.py
tests/c_api_test/test_.py
+0
-1
tests/python_package_test/test_basic.py
tests/python_package_test/test_basic.py
+0
-1
tests/python_package_test/test_consistency.py
tests/python_package_test/test_consistency.py
+0
-1
tests/python_package_test/test_engine.py
tests/python_package_test/test_engine.py
+0
-1
tests/python_package_test/test_plotting.py
tests/python_package_test/test_plotting.py
+0
-1
tests/python_package_test/test_sklearn.py
tests/python_package_test/test_sklearn.py
+0
-1
No files found.
examples/python-guide/advanced_example.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: disable = invalid-name, C0111
import
json
import
json
import
lightgbm
as
lgb
import
lightgbm
as
lgb
import
pandas
as
pd
import
pandas
as
pd
...
...
examples/python-guide/logistic_regression.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: disable = invalid-name, C0111
"""Comparison of `binary` and `xentropy` objectives.
"""Comparison of `binary` and `xentropy` objectives.
BLUF: The `xentropy` objective does logistic regression and generalizes
BLUF: The `xentropy` objective does logistic regression and generalizes
...
...
examples/python-guide/plot_example.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: disable = invalid-name, C0111
import
lightgbm
as
lgb
import
lightgbm
as
lgb
import
pandas
as
pd
import
pandas
as
pd
...
...
examples/python-guide/simple_example.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: disable = invalid-name, C0111
import
lightgbm
as
lgb
import
lightgbm
as
lgb
import
pandas
as
pd
import
pandas
as
pd
from
sklearn.metrics
import
mean_squared_error
from
sklearn.metrics
import
mean_squared_error
...
...
examples/python-guide/sklearn_example.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: disable = invalid-name, C0111
import
numpy
as
np
import
numpy
as
np
import
pandas
as
pd
import
pandas
as
pd
import
lightgbm
as
lgb
import
lightgbm
as
lgb
...
...
python-package/lightgbm/basic.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: disable = invalid-name, C0111, C0301
# pylint: disable = R0912, R0913, R0914, W0105, W0201, W0212
"""Wrapper for C API of LightGBM."""
"""Wrapper for C API of LightGBM."""
from
__future__
import
absolute_import
from
__future__
import
absolute_import
...
...
python-package/lightgbm/callback.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: disable = invalid-name, W0105, C0301
"""Callbacks library."""
"""Callbacks library."""
from
__future__
import
absolute_import
from
__future__
import
absolute_import
...
...
python-package/lightgbm/compat.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: disable = C0103
"""Compatibility library."""
"""Compatibility library."""
from
__future__
import
absolute_import
from
__future__
import
absolute_import
...
...
python-package/lightgbm/engine.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: disable = invalid-name, W0105
"""Library with training routines of LightGBM."""
"""Library with training routines of LightGBM."""
from
__future__
import
absolute_import
from
__future__
import
absolute_import
...
...
python-package/lightgbm/plotting.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: disable = C0103
"""Plotting library."""
"""Plotting library."""
from
__future__
import
absolute_import
,
division
from
__future__
import
absolute_import
,
division
...
...
python-package/lightgbm/sklearn.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: disable = invalid-name, W0105, C0111, C0301
"""Scikit-learn wrapper interface for LightGBM."""
"""Scikit-learn wrapper interface for LightGBM."""
from
__future__
import
absolute_import
from
__future__
import
absolute_import
...
...
python-package/setup.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: disable=invalid-name, exec-used, C0111
"""Setup lightgbm package."""
"""Setup lightgbm package."""
from
__future__
import
absolute_import
from
__future__
import
absolute_import
...
...
tests/c_api_test/test_.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: skip-file
import
ctypes
import
ctypes
import
os
import
os
import
sys
import
sys
...
...
tests/python_package_test/test_basic.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: skip-file
import
os
import
os
import
tempfile
import
tempfile
import
unittest
import
unittest
...
...
tests/python_package_test/test_consistency.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: skip-file
import
os
import
os
import
unittest
import
unittest
...
...
tests/python_package_test/test_engine.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: skip-file
import
copy
import
copy
import
itertools
import
itertools
import
math
import
math
...
...
tests/python_package_test/test_plotting.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: skip-file
import
unittest
import
unittest
import
lightgbm
as
lgb
import
lightgbm
as
lgb
...
...
tests/python_package_test/test_sklearn.py
View file @
00d1e693
# coding: utf-8
# coding: utf-8
# pylint: skip-file
import
itertools
import
itertools
import
joblib
import
joblib
import
math
import
math
...
...
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