├── .gitignore ├── Pipfile ├── README.md ├── blending.py ├── img └── 1.jpg ├── requirements.txt ├── stacking.py └── voting.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FernandoLpz/Stacking-Blending-Voting-Ensembles/HEAD/.gitignore -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FernandoLpz/Stacking-Blending-Voting-Ensembles/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FernandoLpz/Stacking-Blending-Voting-Ensembles/HEAD/README.md -------------------------------------------------------------------------------- /blending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FernandoLpz/Stacking-Blending-Voting-Ensembles/HEAD/blending.py -------------------------------------------------------------------------------- /img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FernandoLpz/Stacking-Blending-Voting-Ensembles/HEAD/img/1.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FernandoLpz/Stacking-Blending-Voting-Ensembles/HEAD/requirements.txt -------------------------------------------------------------------------------- /stacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FernandoLpz/Stacking-Blending-Voting-Ensembles/HEAD/stacking.py -------------------------------------------------------------------------------- /voting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FernandoLpz/Stacking-Blending-Voting-Ensembles/HEAD/voting.py --------------------------------------------------------------------------------