├── .gitignore ├── LICENSE.txt ├── README.md ├── evolutionary_search ├── __init__.py ├── cv.py └── optimize.py ├── setup.cfg ├── setup.py ├── test.ipynb └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsteca/sklearn-deap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsteca/sklearn-deap/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsteca/sklearn-deap/HEAD/README.md -------------------------------------------------------------------------------- /evolutionary_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsteca/sklearn-deap/HEAD/evolutionary_search/__init__.py -------------------------------------------------------------------------------- /evolutionary_search/cv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsteca/sklearn-deap/HEAD/evolutionary_search/cv.py -------------------------------------------------------------------------------- /evolutionary_search/optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsteca/sklearn-deap/HEAD/evolutionary_search/optimize.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsteca/sklearn-deap/HEAD/setup.py -------------------------------------------------------------------------------- /test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsteca/sklearn-deap/HEAD/test.ipynb -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsteca/sklearn-deap/HEAD/test.py --------------------------------------------------------------------------------