Skip to content

Remove any mentions of unbalanced_dataset in docs #83

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion imblearn/pipeline.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
The :mod:`unbalanced_dataset.pipeline` module implements utilities to build a
The :mod:`imblearn.pipeline` module implements utilities to build a
composite estimator, as a chain of transforms, samples and estimators.
"""
# Adapted from scikit-learn
Expand Down
10 changes: 5 additions & 5 deletions imblearn/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
"""
``imbalanced-learn`` is a set of python methods to deal with imbalanced
datset in machine learning and pattern recognition.
"""
Expand Down Expand Up @@ -56,7 +56,7 @@ def _import_module_with_version_check(module_name, minimum_version,
user_friendly_info = ('Module "{0}" could not be found. {1}').format(
module_name,
install_info or 'Please install it properly to use'
' unbalanced_dataset.')
' imbalanced-learn.')
exc.args += (user_friendly_info,)
raise

Expand All @@ -69,7 +69,7 @@ def _import_module_with_version_check(module_name, minimum_version,
if version_too_old:
message = (
'A {module_name} version of at least {minimum_version} '
'is required to use unbalanced_dataset. {module_version} was '
'is required to use imbalanced-learn. {module_version} was '
'found. Please upgrade {module_name}').format(
module_name=module_name,
minimum_version=minimum_version,
Expand All @@ -81,10 +81,10 @@ def _import_module_with_version_check(module_name, minimum_version,


def _check_module_dependencies(is_imbalanced_dataset_installing=False):
"""Throw an exception if unbalanced_dataset dependencies are not installed.
"""Throw an exception if imbalanced-learn dependencies are not installed.
Parameters
----------
is_unbalanced_dataset_installing: boolean
is_imbalanced_dataset_installing: boolean
if True, only error on missing packages that cannot be auto-installed.
if False, error on any missing package.
Throws
Expand Down