Skip to content

Commit

Permalink
DOC: Correct scikit-learn name in comments (scikit-learn#8681)
Browse files Browse the repository at this point in the history
  • Loading branch information
chkoar authored and TomDLT committed Apr 3, 2017
1 parent 05b246e commit 3003da7
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build_tools/travis/test_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ run_tests() {
else
TEST_CMD="nosetests --with-timer --timer-top-n 20"
fi
# Get into a temp directory to run test from the installed scikit learn and
# Get into a temp directory to run test from the installed scikit-learn and
# check if we do not leave artifacts
mkdir -p $TEST_DIR
# We need the setup.cfg for the nose settings
Expand Down
2 changes: 1 addition & 1 deletion sklearn/datasets/california_housing.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def fetch_california_housing(data_home=None, download_if_missing=True):
----------
data_home : optional, default: None
Specify another download and cache folder for the datasets. By default
all scikit learn data is stored in '~/scikit_learn_data' subfolders.
all scikit-learn data is stored in '~/scikit_learn_data' subfolders.
download_if_missing : optional, True by default
If False, raise a IOError if the data is not locally available
Expand Down
2 changes: 1 addition & 1 deletion sklearn/datasets/covtype.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def fetch_covtype(data_home=None, download_if_missing=True,
----------
data_home : string, optional
Specify another download and cache folder for the datasets. By default
all scikit learn data is stored in '~/scikit_learn_data' subfolders.
all scikit-learn data is stored in '~/scikit_learn_data' subfolders.
download_if_missing : boolean, default=True
If False, raise a IOError if the data is not locally available
Expand Down
2 changes: 1 addition & 1 deletion sklearn/datasets/kddcup99.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def _fetch_brute_kddcup99(subset=None, data_home=None,
data_home : string, optional
Specify another download and cache folder for the datasets. By default
all scikit learn data is stored in '~/scikit_learn_data' subfolders.
all scikit-learn data is stored in '~/scikit_learn_data' subfolders.
download_if_missing : boolean, default=True
If False, raise a IOError if the data is not locally available
Expand Down
4 changes: 2 additions & 2 deletions sklearn/datasets/lfw.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def fetch_lfw_people(data_home=None, funneled=True, resize=0.5,
----------
data_home : optional, default: None
Specify another download and cache folder for the datasets. By default
all scikit learn data is stored in '~/scikit_learn_data' subfolders.
all scikit-learn data is stored in '~/scikit_learn_data' subfolders.
funneled : boolean, optional, default: True
Download and use the funneled variant of the dataset.
Expand Down Expand Up @@ -414,7 +414,7 @@ def fetch_lfw_pairs(subset='train', data_home=None, funneled=True, resize=0.5,
data_home : optional, default: None
Specify another download and cache folder for the datasets. By
default all scikit learn data is stored in '~/scikit_learn_data'
default all scikit-learn data is stored in '~/scikit_learn_data'
subfolders.
funneled : boolean, optional, default: True
Expand Down
2 changes: 1 addition & 1 deletion sklearn/datasets/mldata.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def fetch_mldata(dataname, target_name='label', data_name='data',
data_home : optional, default: None
Specify another download and cache folder for the data sets. By default
all scikit learn data is stored in '~/scikit_learn_data' subfolders.
all scikit-learn data is stored in '~/scikit_learn_data' subfolders.
Returns
-------
Expand Down
2 changes: 1 addition & 1 deletion sklearn/datasets/olivetti_faces.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def fetch_olivetti_faces(data_home=None, shuffle=False, random_state=0,
----------
data_home : optional, default: None
Specify another download and cache folder for the datasets. By default
all scikit learn data is stored in '~/scikit_learn_data' subfolders.
all scikit-learn data is stored in '~/scikit_learn_data' subfolders.
shuffle : boolean, optional
If True the order of the dataset is shuffled to avoid having
Expand Down
2 changes: 1 addition & 1 deletion sklearn/datasets/rcv1.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def fetch_rcv1(data_home=None, subset='all', download_if_missing=True,
----------
data_home : string, optional
Specify another download and cache folder for the datasets. By default
all scikit learn data is stored in '~/scikit_learn_data' subfolders.
all scikit-learn data is stored in '~/scikit_learn_data' subfolders.
subset : string, 'train', 'test', or 'all', default='all'
Select the dataset to load: 'train' for the training set
Expand Down
2 changes: 1 addition & 1 deletion sklearn/datasets/species_distributions.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def fetch_species_distributions(data_home=None,
----------
data_home : optional, default: None
Specify another download and cache folder for the datasets. By default
all scikit learn data is stored in '~/scikit_learn_data' subfolders.
all scikit-learn data is stored in '~/scikit_learn_data' subfolders.
download_if_missing : optional, True by default
If False, raise a IOError if the data is not locally available
Expand Down

0 comments on commit 3003da7

Please sign in to comment.