diff --git a/.appveyor.yml b/.appveyor.yml index 10a4002b..bef1b1bb 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -19,9 +19,9 @@ install: - conda config --set always_yes yes --set changeps1 no - conda update -q conda - conda info -a - - conda create -q -n test-environment python=%PYTHON_VERSION% numpy scipy scikit-learn nose cython pandas + - conda create -q -n test-environment python=%PYTHON_VERSION% numpy scipy scikit-learn nose cython pandas pywin32 - activate test-environment - - pip install deap tqdm update_checker pypiwin32 stopit dask[delayed] dask-ml + - pip install deap tqdm update_checker stopit dask[delayed] dask-ml cloudpickle==0.5.6 test_script: diff --git a/ci/.travis_install.sh b/ci/.travis_install.sh index f6357e17..9f699175 100755 --- a/ci/.travis_install.sh +++ b/ci/.travis_install.sh @@ -23,10 +23,10 @@ deactivate # Use the miniconda installer for faster download / install of conda # itself -wget http://repo.continuum.io/miniconda/Miniconda-3.9.1-Linux-x86_64.sh \ +wget https://repo.continuum.io/miniconda/Miniconda3-4.5.11-Linux-x86_64.sh \ -O miniconda.sh chmod +x miniconda.sh && ./miniconda.sh -b -export PATH=/home/travis/miniconda/bin:$PATH +export PATH=/home/travis/miniconda3/bin:$PATH conda update --yes conda # Configure the conda environment and put it in the path using the @@ -56,6 +56,7 @@ pip install stopit pip install xgboost pip install dask[delayed] pip install dask-ml +pip install cloudpickle==0.5.6 if [[ "$COVERAGE" == "true" ]]; then pip install coverage coveralls diff --git a/docs/api/index.html b/docs/api/index.html index 61f001b1..38be9290 100644 --- a/docs/api/index.html +++ b/docs/api/index.html @@ -186,9 +186,9 @@

Classification

Generally, TPOT will work better when you give it more individuals with which to optimize the pipeline. -offspring_size: int, optional (default=100) +offspring_size: int, optional (default=None)
-Number of offspring to produce in each genetic programming generation. Must be a positive number. +Number of offspring to produce in each genetic programming generation. Must be a positive number. By default, the number of offspring is equal to the number of population size.
mutation_rate: float, optional (default=0.9) @@ -317,7 +317,7 @@

Classification

periodic_checkpoint_folder: path string, optional (default: None)
-If supplied, a folder in which TPOT will periodically save the best pipeline so far while optimizing.

+If supplied, a folder in which TPOT will periodically save pipelines in pareto front so far while optimizing.

Currently once per generation but not more often than once per 30 seconds.

Useful in multiple cases:
-offspring_size: int, optional (default=100) +offspring_size: int, optional (default=None)
-Number of offspring to produce in each genetic programming generation. Must be a positive number. +Number of offspring to produce in each genetic programming generation. Must be a positive number. By default, the number of offspring is equal to the number of population size.
mutation_rate: float, optional (default=0.9) @@ -780,7 +780,7 @@

Regression

periodic_checkpoint_folder: path string, optional (default: None)
-If supplied, a folder in which TPOT will periodically save the best pipeline so far while optimizing.

+If supplied, a folder in which TPOT will periodically save pipelines in pareto front so far while optimizing.

Currently once per generation but not more often than once per 30 seconds.

Useful in multiple cases:
-offspring_size: int, optional (default=100) +offspring_size: int, optional (default=None)
-Number of offspring to produce in each genetic programming generation. Must be a positive number. +Number of offspring to produce in each genetic programming generation. Must be a positive number. By default, the number of offspring is equal to the number of population size.
mutation_rate: float, optional (default=0.9) @@ -178,7 +178,7 @@ See periodic_checkpoint_folder: path string, optional (default: None)
-If supplied, a folder in which TPOT will periodically save the best pipeline so far while optimizing.

+If supplied, a folder in which TPOT will periodically save pipelines in pareto front so far while optimizing.

Currently once per generation but not more often than once per 30 seconds.

Useful in multiple cases: