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
3b547001
Unverified
Commit
3b547001
authored
Feb 14, 2021
by
Zhuyi Xue
Committed by
GitHub
Feb 15, 2021
Browse files
[ci][python] apply isort to python-package/lightgbm/dask.py #3958 (#3969)
parent
eda1effb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
12 deletions
+8
-12
python-package/lightgbm/dask.py
python-package/lightgbm/dask.py
+8
-12
No files found.
python-package/lightgbm/dask.py
View file @
3b547001
...
...
@@ -15,18 +15,14 @@ from urllib.parse import urlparse
import
numpy
as
np
import
scipy.sparse
as
ss
from
.basic
import
_choose_param_value
,
_ConfigAliases
,
_LIB
,
_log_warning
,
_safe_call
,
LightGBMError
from
.compat
import
(
PANDAS_INSTALLED
,
pd_DataFrame
,
pd_Series
,
concat
,
SKLEARN_INSTALLED
,
LGBMNotFittedError
,
DASK_INSTALLED
,
dask_DataFrame
,
dask_Array
,
dask_Series
,
delayed
,
Client
,
default_client
,
get_worker
,
wait
)
from
.sklearn
import
(
_lgbmmodel_doc_fit
,
_lgbmmodel_doc_predict
,
LGBMClassifier
,
LGBMModel
,
LGBMRegressor
,
LGBMRanker
)
from
.basic
import
(
_LIB
,
LightGBMError
,
_choose_param_value
,
_ConfigAliases
,
_log_warning
,
_safe_call
)
from
.compat
import
(
DASK_INSTALLED
,
PANDAS_INSTALLED
,
SKLEARN_INSTALLED
,
Client
,
LGBMNotFittedError
,
concat
,
dask_Array
,
dask_DataFrame
,
dask_Series
,
default_client
,
delayed
,
get_worker
,
pd_DataFrame
,
pd_Series
,
wait
)
from
.sklearn
import
(
LGBMClassifier
,
LGBMModel
,
LGBMRanker
,
LGBMRegressor
,
_lgbmmodel_doc_fit
,
_lgbmmodel_doc_predict
)
_DaskCollection
=
Union
[
dask_Array
,
dask_DataFrame
,
dask_Series
]
_DaskMatrixLike
=
Union
[
dask_Array
,
dask_DataFrame
]
...
...
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